Look up heredoc in te php manual

Robb Kerr wrote:

I've got a conditional button that needs to appear/hide on my page
depending upon the contents of a field in my database. The button is an
image and has a long URL and JavaScript for image rotation attached to it.
Needless to say, the href is quite long and includes several "'"
characters. My conditional works great but I want to know if there is an
easy way to escape the whole href so that the "'" characters will not be
seen as PHP quote marks. See below...

<?php
if ($recordset['field'] != "1") {
echo '<a href="#" onMouseOut="MM_swapImgRestore()"
onMouseOver="MM_swapImage('PreviousPage','','/URL/ButtonName.gif',1)"><img
src="/URL/ButtonName.gif" alt="Previous Page" name="Previous Page"
width="150" height="20" border="0"></a>;
?>

Thanx in advance,
Robb



-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to