hey..
I want a page, to take information from a sql databsae, done that. It displays the info with a while statement... Im sure you know what im talking about ?, then it prints the records onto the page, and makes a link from the records. when one of them is clicked, it displays the content of the record, as aooposed to the title, that is shown in the following code :
<?php
$db = mysql_connect("localhost", "----", "----");
mysql_select_db("andromeda_articles",$db);
$result = mysql_query("SELECT id, title FROM articles",$db);
while ($row = mysql_fetch_array($result))
{
?>
<b><a href="par_viewtutorial.php?<?php echo $myrow"?>>tutorials</a></b></font>
<br>
<?php
}
?>
what I need is to confirm that code is sorrect, and I'd like some sample code for the par_vewtutorial.php ?
hope thats no too much to ask 🙂 - thanks for any help in advance.