[PHP] Re: Repopulating forms

2003-08-14 Thread Anthony
becasue your $test string contains double quotes. This is casuing you to end the value element in the input tag. - Anthony "Gerard L Petersen" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi > > My code looks like this. > > $test = "gerard's name is \"gerard\""; > echo $test.""

[PHP] Re: Repopulating forms

2003-08-10 Thread Anthony
Opp... forgot this use htmlspecialchars( ) to fix it. It will convert your " to " for you. So you code should look like this: "; echo ''; ?> and it will work :) - Anthony Gerard L Petersen" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi > > My code looks like this