Right then the line indicated works great, but how do i add a quote mark like this " ?PHP Code:
<?php
$db = mysql_connect("", "", "");
mysql_select_db("MeltdownMySql",$db);
$result = mysql_query("SELECT * FROM meltdown_links ORDER BY priority",$db);
echo("<ul>");
while ($myrow = mysql_fetch_row($result)) {
printf("<li><a href=%s>%s</a></li>", $myrow[1], $myrow[0]); [B]<----[/B]
}
echo("</ul>");
?>
As obviously adding one simply stops the string.


Reply With Quote
