how do you put a quote inside a variable in PHP?
for example, with...
$variable = "stuff";
...what ever is within the quotes is what the variable is.
What if you want to use...
"Please click <a href="page.html">here</a>to proceed."
...as the value for a variable?
$variable = "Please click <a href="page.html">here</a>to proceed.";
...does not work because it stops when it gets to the second quote,
outputting the variable as...
Please click <a href=
Anyone?
____________________
BYU Unix Users Group
http://uug.byu.edu/
___________________________________________________________________
List Info: http://phantom.byu.edu/cgi-bin/mailman/listinfo/uug-list
- Re: [uug] how to put quote in a variable in PHP Wade Preston Shearer
- Re: [uug] how to put quote in a variable in PHP David Smith
- Re: [uug] how to put quote in a variable in ... Wade Preston Shearer
- RE: [uug] how to put quote in a variable in PHP Gary Thornock
- Re: [uug] how to put quote in a variable in PHP Jon Jensen
