hi,
i have a upload.php page accept a POST from other page
upload.php
<?PHP
$userfile_name = $FILES['userfile']['name'];
if (is_uploaded_file($FILES['userfile']['tmp_name']))
copy($_FILES['userfile']['tmp_name'], "upload/$userfile_name");
?>
now i want to have a text "uploading..." when this page is executing.
so i added text "uploading..." at the top of the upload.php page
but it won't display the text until the file is uploaded.
is it ok to write the text once upload.php is loaded?
thx i have so many questions since i start php, really a newbie