i'm puzzled. here's some simple code that pulls from a db. following the code is a problem description.
<?
$db = mysql_pconnect("host", "user", "pass");
mysql_select_db("DBNAME", $db);
$result = @($statement, $db);
$num_of_rows = @mysql_num_rows($result);
if($num_of_rows > 0) {
while($row = mysql_fetch_row($result)){
echo $row[4];
echo $row[0];
}
}
?>
in the while statement, $row[0] is echoed, but $row[4] is not. if i try all of them from $row[0] - $row[8], all but $row[4] echo.
$row[4] contains either:
NOINDEX,NOFOLLOW
or
INDEX,FOLLOW
anyone? please?
-dolphinsnot