Hi Kieth,

I would use this :

$result = mysql_query("select * from proprietaires") or die(
mysql_error() );

while ($row = mysql_fetch_row($result))

{
echo ".$row['Id'].";
echo "<br>\n";

echo $row[2];
echo "<br>\n";
}

I hope this works,

Best regards,
 
Davy Obdam,
mailto:[EMAIL PROTECTED]


You wrote:
Hi I've just started with Php and MySql
I have installed the PhpTriad all in one package on my windows XP and
all seems to be going well.

I have the following problem, here is the code

$result = mysql_query("select * from proprietaires") or die(
mysql_error() );

while ($row = mysql_fetch_row($result))

{

echo "Id:";
echo $row["Id"];
echo "<br>\n";

echo $row[2];
echo "<br>\n";

}

The Echo $row["ID"] does not work
The Echo $row[2] does

This works on some of my other forms. any ideas or hints woul most
certainly be welcome


Thanks in advance
Keith
France






-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

================================================================
Deze e-mail is door E-mail VirusScanner van Planet Internet
gecontroleerd op virussen. Op http://www.planet.nl/evs staat een
verwijzing naar de actuele lijst waar op wordt gecontroleerd.




-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to