sorry, but how do i use that with a url ?
The code i have so far
while($myrow = mysql_fetch_array($result))
{
$QuesID = $myrow["QuestionID"];
$Question = $myrow["Question"];
echo "<li>";
echo "<a href=\"viewquestion.php?QuestionID=$QuesID\">$Question</a>";
I am trying to trim the $Question output
Thanks