Mysql field flags
Ceviz Viki, özgür ansiklopedi
mysql_fetch_flags
Sorgudan dönen sonuç tablosundan belirtilen saha ile ilişkili belirlenmiş sonuçları getirir.
Kullanımı;
string mysql_field_flags ( resource $result , int $field_offset )
Örnek:
<?php
$result = mysql_query("SELECT id,email FROM people WHERE id = '42'");
if (!$result) {
echo 'Could not run query: ' . mysql_error();
exit;
}
$flags = mysql_field_flags($result, 0);
echo $flags;
print_r(explode(' ', $flags));
?>
