View Single Post
ישן 30-08-06, 17:51   # 2
RS324
תודה על תרומתך.
 
מיני פרופיל
תאריך הצטרפות: May 2006
הודעות: 3,173

RS324 לא מחובר  

אם הבנתי אותך נכון תעשה משהו בסגנון הזה :


PHP קוד:
$per_page 15;

$limitstart = ($_REQUEST['limitstart'] ? $_REQUEST['limitstart'] : 0);
$limitend = ($_REQUEST['limitend'] ? $_REQUEST['limitend'] : $limitstart +$per_page) ;

 
mysql_query("SELECT * FROM table ORDER BY tableid DESC LIMIT $limitstart,$limitend"); 
עכשיו קישור לעמוד הבא יהיה
limitend+perpage; וכך הלאה..
  Reply With Quote