I am running into a small problem. i would like to pass two variable in a hyperlink.
here is the part of the script that seems to have a problem as no values are actually passed to the next page when following the hyperlink.
$dbcnx=@mysql_connect("localhost","root","jan1971tenth");
mysql_select_db("jokes");
$jokelist=@("select joketext, id, JokeCategory from jokes");
while ($joke=mysql_fetch_array($jokelist))
{
$id = $joke["id"];
$textjoke = $joke["joketext"];
$categoryjoke = $joke["JokeCategory"];
echo ("<a href='article_test.php?textjoke=$joketext&categoryjoke=$jokecategory'>$textjoke<a/>"."<br />");
}
?>
thank you in advance
andrea