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

Reply via email to