Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: jwoods7
  • Content: Threads
  • Order by date
  1. jwoods7

    time function RegExps

    Wow, I've started to research RegExps for data verification...not a small topic. Anyway, my sample script isn't working and I don't know why, can anyone help? For this one, I'm looking to test whether a string is a time (ie; 11:45 am) Why does this alert "false"? function...
  2. jwoods7

    Display Session Cookie Quantity??

    I'm having some random issues with my session variables. Let me explain: I write session variables to the users browser to keep track of who they are for that session (log in/out). Over the last week, my clients have been complaining that it is randomly 'logging them out' although, the logout...
  3. jwoods7

    file_get_contents() returns garble!

    I'm using: $results = file_get_contents("email_notebook.pdf"); echo $results; in an attempt to return just the text portion of the pdf file and save it to a variable. I've looked around but can't find an easy function, and this only returns "??«Ú?¢=¶º£sMWwÏÚÞuذqÓæ-&quot...
  4. jwoods7

    Popularity Script - Can't find one!

    I'm looking for a basic php script to check link popularity of a url. I'm not looking for anything fancy, except created with php. I found one but it was $25 and I'm thinking there is something out there to work with that is free. Has anybody seen one?
  5. jwoods7

    Search for Text within page

    I'm researching a SIMPLE function (hopefully) that all it does is search for a string ($string) within a web url ($page). I would like it to return the entire line that term is in, or something to that effect. I'm more interested at this point with being able to find a term within a page...
  6. jwoods7

    "Supplied argument is not a valid MySQL result resource"

    I'm trying to create a function that I can use to pull information from a field in a database. So far I'm in the testing stage...here's what I have... function getMemberInfo($login, $field) { $query="SELECT $field FROM users WHERE login='$login'"; while($row =...
  7. jwoods7

    undefined function: mcrypt_create_iv()

    I have a script that was given to me for research...but it's giving me this error: Fatal error: Call to undefined function: mcrypt_create_iv() From my research on the net, this is a built-in function ??? yes no? This creates an initialization vector to deal with encrypting cookies....I...
  8. jwoods7

    Members Script Start

    ME=LEARNING PHP I'm looking for a script that I can put on pages that will verify that a user has a current logged in session. If not, will redirect to login screen. Also, I want the session to remember an "ID" for the member to show specific details about that members info. I...
  9. jwoods7

    Locked? What did I do???

    I have a multi-user database that all remote computers access linked tables on a server via a LAN. Occasionally I get this error when trying to open the front-end database: The database has been placed in a state by user 'Admin' on machine 'POS2' that prevents it from being opened or locked...
  10. jwoods7

    More Info on where to use DoEvents and what it does

    The help file in Access doesn't explain very well what DoEvents does for me. I'm still working on the problem of slow networking problems http://www.tek-tips.com/gviewthread.cfm/lev2/4/lev3/27/pid/705/qid/527506 One of the programs I have is designed to access info just like what my program...
  11. jwoods7

    Backend Database Slows system Down w/ Multiple Users???

    I have created a system that attaches to a back end (data) file for an accounting/inventory system. The data file is located on a central server, the program is on various computers around the business. Each one looks to the server to attach the data. Each computer alone runs blazingly fast...
  12. jwoods7

    Subscript Out of Range Error with Array()

    I've searched this forum and found some common difficulties with this error, the problem is most posts are talking about dynamicly created arrays....don't think mine is. My array is set like this: Public Const AcctSub = 0 ReDim Trans(0, 8) As String Dim Counter as long Counter = 6...

Part and Inventory Search

Back
Top