Hi again,
I want to display all the news titles that i have in my database, which i have managed, but also to display a link with their news id in so that the edit page can be displayed with the article in.
i am currently using this to display the news titles:
$result = mysql_query("SELECT title FROM news") or die(mysql_error());
while($row = mysql_fetch_row($result))
{
print("Title: $row[0]<br>");
}
Thanks