06-05-09, 14:30
|
# 7
|
חבר מתקדם
|
ציטוט:
נכתב במקור על ידי vadimg88
אז הייתי מציע שתקרא אודות ARRAYS
PHP קוד:
<?php
/* Adding Messages */
$msgs = new Messages();
$msgs->connect();
$msgs->select('messages','*');
//$msgs->insert('messages',array(0,1,0,"","Shmuel","Today","","Shillo","sshilo@gmail.com"));
$res = $msgs->getResult();
//print_r ($res);
foreach($res as $value)
{
echo $value['author_email'];
}
?>
|
תודה רבה. 
|
|
|