Hi,

anybody who can help?

I Try to post data from form test1.html and read in new_entry.php form (environment: 
Windows XP Prof. , Apache, PHP 4.0.5)

test1.html

<head>
<form method="post" action="new_entry.php">
<INPUT NAME="email" TYPE="Text" size=32></INPUT>
<INPUT type=submit value=enter>
</FORM>    
</body>
</html>

new_entry.php This one should display the posted variables

<html>
<body>
<?php
  foreach($HTTP_GET_VARS as $key => $value) {
    print "$key = $value<br>";
  }  
?>
</body></html>

Reply via email to