Page 1 of 1

How to retrieve values from Database

Posted: Tue Oct 14, 2008 8:10 am
by swamyt
Hello ,

How to retrieve values from database without whileloop

Thanks
Swamy

Re: How to retrieve values from Database

Posted: Tue Oct 14, 2008 9:47 am
by aceconcepts

Code: Select all

 
$result=mysql_query("SELCECT blah blah blah");
$row=mysql_fetch_array($result);
 

Re: How to retrieve values from Database

Posted: Tue Oct 14, 2008 12:57 pm
by califdon
swamyt wrote:Hello ,

How to retrieve values from database without whileloop

Thanks
Swamy
Please explain what you want to do.