Hi
I have an website for articles. On the main page I show only the title and the description for the articles (in my database I have the fields: id, title, description, and text)
[php]
$result=mysql_query(“SELECT * FROM content ORDER BY id DESC”);
while($res=mysql_fetch_array($result)){
echo "<h2>".$res['title']."</h2>";
echo "<p>".$res['descrip']."</p>";
}
[/php]
How can I make dynamic link - when click on ‘title’ to show corresponding ‘text’?
Thank you!