look my exemple:
###################teste.php
<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();
?>
I dont can get the value from the posted variable....
What I can do??
TNX
Klaus Kaiser