Guys I have a problem here.
I'm using PHP 4.3.2 and httpd 1.3.28.
Look my exemple.
I have a page whith a Form method post, and I submit this page to teste2.php, but I 
dont can request de data from the text box...


#######################
This is the test page

<html>
<body>
<form action="teste2.php" method="post" enctype="multipart/form-data">
<input type="text" name="texto">
<input type="submit" value="ok">
</form>
</body>
</html>

#####################
Teste2.php

<?php
$string = $_POST['texto'];
echo "Var em post: ".$string."<br>";
echo "Var em get: ".$_GET['texto']."<br>";


//phpinfo();
?>
############################################

Some one can help me...???

Klaus Kaiser Apolinário
Curitiba online

Reply via email to