Re: [PHP] Reading posted form variables

2005-03-16 Thread Jochem Maas
Simon Allison wrote: Hey, Obviously this has something to do with the quotation marks in the a href statement, however I am new to php and my attempts using addslashes and stripslashes have failed. I would be most grateful if anyone could help me. addslashes() and stripslashes() won't hel

Re: [PHP] Reading posted form variables

2005-03-15 Thread Ligaya Turmelle
I cheat. when I am putting something into a hidden field that will have HTML - I base64_encode it. then when the receiving page gets it I decode it. It keeps the html from accidentally showing up and "hides" it from the user. It's ugly - but effective. Simon Allison wrote: Hey, I have a

[PHP] Reading posted form variables

2005-03-15 Thread Simon Allison
Hey, I have a form which allows users to enter a message and then submits to a confirmation page which displays the submitted message, and it has a form with a hidden field which uses php to retrieve the message posted from the initial page and posts that message if the user clicks the submit b