View Single Post
ישן 06-05-09, 14:17   # 6
vadimg88
חבר מתקדם
 
מיני פרופיל
תאריך הצטרפות: Feb 2008
גיל: 37
הודעות: 710

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'];
}
?>
  Reply With Quote