That will display data from each db row to a row on the screen which is
oposite of what i am trying to do.
Ajdin
On Thu, 26 Jul 2001, Balaji Ankem wrote:
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTE
assume $result is the result stored after execution of
query.
while ($row = mysql_fetch_object($result)){
echo $row->column1; echo
(" "); echo $row->column2; echo
(" "); echo $row->column3;
echo (" ");
echo $row->column4;
echo ("");
}
here column1,2,3,4
2 matches
Mail list logo