Matthew Sims wrote:
I'm  trying to use html_decode with the echo function but failed so far.

<? echo mysql_result($product, 0,1) ?>

What would be the correct syntax?

TIA


You should read up on how to use mysql_result properly. Read through the
user comments for tips.

http://us2.php.net/manual/en/function.mysql-result.php

For example:

$query = "SELECT * from tablename where index='var'";

$result = mysql_result($query);

while ($row = mysql_fetch_array($result)) {
  //do stuff with $row
}

--Matthew Sims
--<http://killermookie.org>


Hello.

Matt, appearently you're confusing mysql_result() with mysql_query() (-:


Daniel

--
WWE e-commerce IT GmbH
Eiffestrasse 462, D-20537 Hamburg
Tel.: +49-40-2530659-0, Fax: +49-40-2530659-50

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



Reply via email to