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 SkipVought 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: *

  1. calvin860

    PHP link question

    A simple solution would be to use the html meta refresh tag. Calvin
  2. calvin860

    Delete an array item

    If the keys of your array are integers, try using unset() on the array and then use array_splice() to renumber the keys. For example: $test[0] = '5'; $test[1] = '6'; $test[2] = '7'; $test[3] = '8'; $test[4] = '9'; unset($test[2]); array_splice($test,0,0); for($i=0; $i<count($test); $i++) {...
  3. calvin860

    Problem with file upload

    Do a phpinfo() and check the value for upload_max_filesize. You may need to increase the size in the php.ini file to upload larger files. Calvin
  4. calvin860

    &quot;&quot; in url string

    Did the string use to work with the database before? If it did, you can always use stripslashes() to undo what you did with addslashes() before querying the database. Could you provide more information on the problem, like what error messages are you getting if any? What you are trying to...
  5. calvin860

    &quot;&quot; in url string

    Before displaying the url, run the variable through addslashes() Calvin

Part and Inventory Search

Back
Top