Hello I'm trying to send one variable with POST (Hello Angel). That is the code:
<form action="dos.php" method="post" name="compra">
<input name="id_txt" type="hidden" value=<?php echo "Hello Angel" ?>/>
<input type="submit" name="Send" value="Send" />
</form>
when in the other page show the variable, only shows up space (only Hello). That is the code:
<?php
if (isset($_POST['id_txt']))
echo $_POST['id_txt']
?>
So, how Can I show all?