View Single Post
ישן 18-09-06, 20:55   # 2
-VladK-
הוסטסניון
 
-VladK-'s Avatar
 
מיני פרופיל
תאריך הצטרפות: Apr 2006
גיל: 34
הודעות: 2,182

-VladK- לא מחובר  

PHP קוד:
<table>
    <tr>
        <?php
            
include "../../db.php";
            
$aaa mysql_query("SELECT * FROM gallery"); 
            
$x 0;
            while(
$array mysql_fetch_array($aaa)){ 
                
$x++;
                echo 
"<td><a target=_blank href=".$array["pic"]."><img width=100 border=0 height=100 src=".$array["pic"]."></a><br/><a href='commitee_remove.php?id=".$array["id"]."'>מחק תמונה</a><br/><br/></td>";
                if(
$x == 4) {
                    echo 
"</tr><tr>";
                    
$x 0;
                }
            } 
        
?>
    </tr>
</table>

Last edited by -VladK-; 18-09-06 at 20:58..