Hi, I've this problem:
Server Apache / PHP v.4.1.2
At the moment the parametere register_globals is still set to on;
I'm triyng to use $_POST and $_FILES between different pages, but variables
are always empty !!!
Page1
----------------------------------------------------------------------------
------------------------
<form method="POST" action="test_upload_conferma.php" ENCTYPE =
"multipart/form-data" >
<input type="file" name="img1">
<input type="text" name="mytext">
<input type="submit" name="Inserisci" value="Inserisci">
</form>
Page2
----------------------------------------------------------------------------
----------------------
$text = $_POST['mytext'];
$files = $_FILES['img1']['name'];
$filestmp = $_FILES['img1']['tmp_name'];
these variables are empty..................
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php