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...
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)) {...
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 ;)
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()'>...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.