Shouldn't it be;

$sql="Some query";
$result = $conn->query($sql);
//            VVVVV             VVVVVVV
while ($row = $conn->fetchArray($result)) {
        echo $row['hey'];
}
//             VVVVV             VVVVVVV
while ($row2 = $conn->fetchArray($result)) {
        echo $row2['otherhey'];
}

Warren Vail

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

Reply via email to