Code:
$row_count = mysql_num_rows(mysql_query("SELECT id FROM en_news"))-10;
$query= "SELECT id,date,title FROM en_news LIMIT $row_count ,10";
Code:
$query= "SELECT id,date,title FROM en_news ORDER BY id DESC LIMIT $row_count ,10";
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
$row_count = mysql_num_rows(mysql_query("SELECT id FROM en_news"))-10;
$query= "SELECT id,date,title FROM en_news LIMIT $row_count ,10";
$query= "SELECT id,date,title FROM en_news ORDER BY id DESC LIMIT $row_count ,10";