Jump to content

efrainuzco

New Members
  • Posts

    2
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

efrainuzco's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. this is the code of the form: <html> <head> <title>Untitled Document</title> </head> <body> <form action="salida.php" method="post"> <p>Introduce datos: </p> <p> <textarea name="txtdatos" cols="80" rows="8" id="txtdatos"><?php echo $txtdatos; ?></textarea> </p> <p> <label> <input type="submit" name="Submit" value="Enviar" /> </label> </p> </form> <p> </p> </body> </html> This is the code of the preview: <html> <head> <title>Untitled Document</title> </head> <body> <?php echo $txtdatos; ?> <form id="form1" name="form1" method="post" action="entrada.php"> <label> <input type="submit" name="Submit" value="AtrĂ¡s" /> </label> <input name="txtdatos" type="hidden" id="txtdatos" value="<? echo $txtdatos; ?>" /> </form> <p> </p> </body> </html> The problem is that, when I click back button, everything between " " disapears. Help please!!
  2. Hi everyone! I am working with PHP, and having the following problem: I have a form and a preview button, when I type anything with " " and preview it there is no problem, except when I go backwards to the form page, because everything between " " is disapeared including the quotation marks. Could you help me please? Thanks in advace.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.