Hello Gang! 🙂
I do have this
In the database I have a fileds called "id", how do I make when clicking on a title, the correct id goes to a querystring, like "list?id=7"
while($row=mysql_fetch_array($Result)){ echo $row['title']; echo "<br>"; }
while($row=mysql_fetch_array($Result)) { echo "<a href=\"list.php?id=".$row['id']."\">"; echo $row['title']; echo "</a><br>\n"; }
would strongly suggest indenting as i have above (and similar placing of } and { ) rather than burying them at the end of lines.
Works like a charm. Thank you Sir.