Hi,
I need to construct a url string that contains double quotes. i.e. <a href="test.php?var=test this">.
Suggestions?
Regards Thayne
<? echo "<a href=\"test.php?var=test this\">."; ?>
<?php echo "<a href=\"test.php?var=".urlencode("\"test this\"")."\">link with doublequotes</a>"; ?>
//Nicke
<?php print("<a href=\"test.php?var=something\">Something</a>"); ?>