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 Westi 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. intrivious

    CSS & javascript Firefox problems

    Hello, I have a simple page that is generated dynamically with PHP pulling data from a PostgreSQL DB. It seems that when I generate a table from the DB query that results in more than 80 records, some major dislpay problems occur in Firefox. There are no apparent problems in Internet Explorer...
  2. intrivious

    How to cancel running functions or close connection

    What method are you using to create the pdf files?
  3. intrivious

    PHP file upload problems

    Problem solved... I did not need the / before 'email_list'... Thanks anyways...
  4. intrivious

    PHP file upload problems

    Is there anything obviously wrong with this code? My form field is named 'file'. Whenever I try to upload a file, it fails. $SUB_DIR = "/email_list/"; $FILE = $SUB_DIR . basename($HTTP_POST_FILES['file']['name']); if (move_uploaded_file($HTTP_POST_FILES['file']['tmp_name'], $FILE)) {...
  5. intrivious

    JavaScript time delay

    Thanks a lot for the help. I have not tried it at the moment, but document.write is all I have been trying to test it with just to understand how setTimeout works. Appreciate it ;)
  6. intrivious

    JavaScript time delay

    All I need is a script telling the browser to print a string to the screen every x seconds. Is this code incorrect? <html> <head> <script type="text/javascript"> function init() { document.write("blah blah blah<br>"); setTimeout("init()", 1000); } </script> </head> <body onload='init()'>...

Part and Inventory Search

Back
Top