I have two tables in mysql. Following is my script.
<?php
$conn=mysql_connect("localhost",'root','');
mysql_select_db('test');
$sql    = "SELECT data_student.name,ozekimessagein.msg 
            FROM ozekimessagein,data_student
            WHERE ozekimessagein.sender=data_student.sender 
            ORDER BY ozekimessagein.msg";
$res=mysql_query($sql);
$cn=mysql_num_rows($res);
for($x=0;$x<$cn;$x++)
{
    list($name,$msg)=mysql_fetch_row($res);
    echo "<li>$name,$msg";
}
mysql_close($conn);
?>
this should display the name from table data_student table and the message from ozekimessagein as long as the sender in data_student table match with the sender in the ozekimessagein table. But it doesn't work.
 
     
     
    