[Solved] What is wrong with this mysql query? help please [closed]


use

while ($row = mysql_fetch_array($result) ) {
    $url = $row["web"];
    echo $url;
}

in stead of

$row = mysql_fetch_array($result)
$url = $row["web"];

Because your query indicates you are expecting up to 10 rows. But your code will only show the first one.

0

solved What is wrong with this mysql query? help please [closed]