PHP Function List
mysql_fetch_row() doesn't exist. Closest matches:
- mysql_fetch_row
- msql_fetch_row
- mssql_fetch_row
- fbsql_fetch_row
- mysql_fetch_assoc
- mysql_fetch_array
- mysqli_fetch
- mysql_fetch_object
- msql_fetch_array
- mysql_affected_rows
- mysql_fetch_field
- mssql_fetch_assoc
- ovrimos_fetch_row
- mssql_fetch_array
- msql_fetch_object
- pg_fetch_row
- ibase_fetch_row
- maxdb_fetch_row
- mssql_fetch_object
- msql_affected_rows
Site Search Results
-
Return Values Returns an numerical array of strings that corresponds to the fetched row, or FALSE if there are no more rows. mysql_fetch_row() fetches one row of data from the result associated with the specified result identifier.
-
mysql_fetch_row: 2.35096800327 secs mysql_fetch_assoc: 2.92349803448 secs As you can see, it's twice as effecient to fetch either an array or a hash, rather than getting both. it's even faster to use fetch_row rather than passing fetch_array MYSQL_NUM, or ...
-
Rückgabewerte Gibt ein numerisches Array von Zeichenketten zurück, das der gelesenen Zeile entspricht oder FALSE falls keine weiteren Zeilen vorhanden sind. mysql_fetch_row() liefert einen Datensatz aus dem Anfrageergebnis mit der übergebenen Kennung.
-
要访问同名的其它列,要么用 mysql_fetch_row() 来取得数字索引或给该列起个别名。参见 mysql_fetch_array() 例子中有关别名说明。 有一点很重要必须指出,用 mysql_fetch_assoc() 并不明显 比用 ...
-
Zwracane wartości Zwraca tablicę numeryczną, która odpowiada pobranemu wierszowi, lub FALSE jeśli nie ma więcej wierszy. mysql_fetch_row() pobiera jeden wiersz danych z wyniku skojarzonego z podanym identyfikatorem wyniku.
-
返り値 取得された行に対応する文字列の配列を返します。もう行がない場合は、 FALSE を返します。 mysql_fetch_row() は、指定した結果 ID が指す結果から 1 行分のデータを取得します。
-
Valeurs de retour Retourne un tableau numérique de chaînes qui correspond à la ligne récupérée, ou FALSE s'il n'y a plus de lignes. mysql_fetch_row() va rechercher une ligne dans le résultat associé à l'identifiant de résultat spécifié.
-
mysql_fetch_field() 可以用来从某个查询结果中取得字段的信息。如果没有指定字段偏移量,则下一个 ... while ($row = mysql_fetch_row ($result)) { $new_row =array(); for($i = 0; $i < count ($row); $i++) {
-
Valores devueltos Devuelve un array numérico que corresponde a la fila recuperada, o FALSE si no quedan más filas. mysql_fetch_row() recupera una fila de datos del resultado asociado al identificador de resultado especificado.
-
function &db_fetch_object($set,$className) { /* Start by getting the usual array */ $row = mysql_fetch_assoc($set); if ($row === null) return null; /* Create the object */ $obj =& new $className(); /* Explode the array and set the objects's instance data */

Other forms of search
To search the string "mysql_fetch_row()" using other options, try searching:
- Only the documentation
- Only this mirror
- The entire php.net domain
- pear.php.net
- pecl.php.net
- The Bug DB
- php-general mailing list
- Internals mailing list
- Documentation mailing list
For a quick overview over all documented PHP functions, click here.
