Hey, so thanks to the help earlier, I now have a great function for querying a specific row of data.
class Posts{
public static function singleQuery($table, $value){
return mysql_fetch_object(
mysql_query("select * from $table where id=$value"), __CLASS__);
}
}
$set = Posts::singleQuery('settings', '1');
echo $post->title;
I was hoping to modify this so it queries the following:
SELECT * FROM posts ORDER BY id DESC LIMIT 0, 3"
and then create an 'echo loop' or a foreach type of deal on my view/index page. Something like:
foreach ($a as $b){
echo "yadda"
}
I hope this makes sense..
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…