Europus schreef:
It's pretty much the same. With var_dump(), values from the first row
of the table are iterated twice, the script is not looping through and
reporting all 2100 rows. Grossly similar behavior was observed with
print_r() and echo: while different data was reported by each, the
loop wouldn't loop. The first row was reported once (or twice) and
that was the end of that. I've tried foreach() also, same-same. It
doesn't loop, it just reports the first row.

Here's my code:

side note: where does $table come from?


<?php

//connect to db
$link = mysql_pconnect('$host', '$login', '$passwd');
if (!$link) {
    die('Unable to connect : ' . mysql_error());
}
// make $table the current db
$db_selected = mysql_select_db('$table', $link);
if (!$db_selected) {
    die ('Unable to select $table : ' . mysql_error());
}

//get column data
    $sql    = "SELECT column2, column3 FROM $table";
    $result = mysql_query($sql);

if (!$result) {
        echo "query failed.\n";
} else {
        while ($row = mysql_fetch_array($result))
                var_dump($row);
}       


    $row = mysql_fetch_row($result);

//loop through to display results
for($i=0; $i < count($row); $i++){
    var_dump($row);
    echo "<br /><br />";
?>

Ulex


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

Reply via email to