|
Posted by Jerry Stuckle on 10/13/07 14:05
Summercool wrote:
> On Oct 13, 6:25 am, Jerry Stuckle <jstuck...@attglobal.net> wrote:
>> Change
>>
>> <input name="val" type="text" value="<?= $_GET["val"] ?>">
>>
>> to:
>>
>> <input name="val" type="text" value="<?php echo $_GET["val"] ?>">
>
> one essential thing is to make foo "bar" foo
> and foo 'bar' foo both work
>
>
>
It will work. Michael's comments are also valid, but aren't stopping
your code from working.
It sounds like you're running with magic_quotes enabled. It's a setting
I wish they would have never had, and I recommend you turn it off.
If you can't turn it off, check the stripslashes() call.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
Navigation:
[Reply to this message]
|