This script selects all the rows that i need but now how do i echo the fileds from each row that its found?
$connection = mysql_connect($host,$user,$password)
or die ("coudlnt connectto server.");
$db = mysql_select_db($database, $connection)
or die ("coulnt find database.");
$query = "SELECT * FROM CUSTO where PENDINGD=""";
$result = mysql_query($query)
or die ("yellow");
$num = mysql_num_rows($result);
$row = mysql_fetch_array($result);
extract($row);
2007-11-22
03:54:31
·
2 answers
·
asked by
peter s
1
in
Computers & Internet
➔ Programming & Design