can any one have idea how to retrive data from database in php???and i want to use database like oracle nad mysql
You can use following code $res=mysql_query("select * from table"); while($arr=mysql_fetch_array($res)) { echo $arr['field']; } PHP: