اخوي بومالك، الطريقة مثل الآتي (لا اضمن النتيجة لذا من الافضل التجربة على السيرفر الشخصي)
عندك في ملف index.php هذا الكود (طبعا بعد التعديل السابق):
	كود PHP:
	
$result=mysql_query("SELECT * FROM news order by id DESC");
while($row=mysql_fetch_array($result)){
?>
<font face=tahoma style=font-size=8pt><font color=ff0000><b>[ <?php echo $row[date] ?> ]</b></font>  <?php echo $row[short] ?><br><?php echo $row[news] ?><br><hr style="border: 2px dotted #FBCE66"></font>
<?php
}
 استبدله بهذا الكود:
	كود PHP:
	
if(!isset($_GET['page'])){ 
    $page = 1; 
} else { 
    $page = $_GET['page']; 
} 
// ضع هنا عدد النتائج لكل صفحة 
$max_results = 10; 
// Figure out the limit for the query based 
// on the current page number. 
$from = (($page * $max_results) - $max_results); 
// Perform MySQL query on only the current page number's results 
$result=mysql_query("SELECT * FROM news LIMIT $from, $max_results ORDER BY id DESC"); 
while($row=mysql_fetch_array($result)){
?>
<font face=tahoma style=font-size=8pt><font color=ff0000><b>[ <?php echo $row[date] ?> ]</b></font>  <?php echo $row[short] ?><br><?php echo $row[news] ?><br><hr style="border: 2px dotted #FBCE66"></font>
<?php
} 
// Figure out the total number of results in DB: 
$total_results = mysql_result(mysql_query("SELECT COUNT(*) as Num FROM news"),0); 
// Figure out the total number of pages. Always round up using ceil() 
$total_pages = ceil($total_results / $max_results); 
// هنا يتم طباعة ارقام الصفحات و كلمتي "التالي" و "السابق"، قم بتغييرها بما يتناسب مع شكل الصفحة لديك 
echo "<center>إختر الصفحة<br />"; 
// Build Previous Link 
if($page > 1){ 
    $prev = ($page - 1); 
    echo "<a href=\"".$_SERVER['PHP_SELF']."?page=$prev\"><<السابق</a> "; 
} 
for($i = 1; $i <= $total_pages; $i++){ 
    if(($page) == $i){ 
        echo "$i "; 
        } else { 
            echo "<a href=\"".$_SERVER['PHP_SELF']."?page=$i\">$i</a> "; 
    } 
} 
// Build Next Link 
if($page < $total_pages){ 
    $next = ($page + 1); 
    echo "<a href=\"".$_SERVER['PHP_SELF']."?page=$next\">التالي>></a>"; 
} 
echo "</center>";
 مره ثانيه اخوي تراني مو متأكد من النتايج... :con2:  جرب الكود على السيرفر وتأكد منه  
بوجــــــــــــبر