To : WizyWyg
To set up a link for the read more option, it is quite easy.
first you delegate a page, say news_more.php to display a news whenever a $_GET['newsID'] is set
for example;
<?php
if( isset( $_GET['newsID'] ) ) {
// read the specific news id from the database and show it
// you need to cast the news id to integer for secure SQL statement.
$_GET['newsID'] = (int) $_GET['newsID'];
} else {
// direct the user back to the main page.
}
?>
so, the link of the read more feature will be more or less like this.
<a href="news_more.php?newsID=12">Read More</a>
you just need to loop the newsID number according to what you receive when you loop the recordset from the database. Hopefully you don't need me to code all in order to understand 🙂