echo string Problem
Posted: Tue Jan 04, 2005 3:43 am
Hello,
I want to write a PHP function that echo´s a string with a " in it. How can Print a " in PHP without ending the string ? I hope I made myself clear
Already Thanks,
I want to write a PHP function that echo´s a string with a " in it. How can Print a " in PHP without ending the string ? I hope I made myself clear
Code: Select all
function PHP_Print_Link ($name)
{
$link = "<a href="javascript:popup('50','200','frame_guestbook.php?name=$name');" >$name </a>";
echo $link;
}