help me plz......

Discussion in 'PHP' started by databaseking, Aug 19, 2007.

  1. #1
    can any one have idea how to retrive data from database in php???and i want to use database like oracle nad mysql
     
    databaseking, Aug 19, 2007 IP
  2. ewriter

    ewriter Banned

    Messages:
    590
    Likes Received:
    9
    Best Answers:
    0
    Trophy Points:
    0
    #2
    You can use following code

    $res=mysql_query("select * from table");
    while($arr=mysql_fetch_array($res))
    {
    echo $arr['field'];
    }
    PHP:
     
    ewriter, Aug 19, 2007 IP