XWare Поиск по информационным ресурсам МГУ English Russian
       
       Точная форма слов   О проекте   Сайты   Помощь
Поиск по:oit.cmc.msu.ru   - Поискать по всем серверам
На этой странице приведены все страницы сервера oit.cmc.msu.ru ,которые мы индексируем. Показаны документы 1701 - 1720 из 3520.

В начало ] Пред. | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | След.В конец ]

Упорядочить по: URL  |  дате изменения
1701. mysql_fetch_array
PHP Manual . ... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) mysql_fetch_array -- Fetch a result row as an associative array, a numeric array, or both. array mysql_fetch_array ( resource result [, int result_type]) . ... In addition to storing the data in the numeric indices of the result array, it also stores the data in associative indices, using the field names as keys. If two or more columns of the result have the same field names, the last column will take precedence. ...
[ Сохраненная копия ]  Ссылки http://oit.cmc.msu.ru/php/function.mysql-fetch-array.html -- 6.6 Кб -- 03.02.2002
Похожие документы

1702. mysql_error
... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) mysql_error -- Returns the text of the error message from previous MySQL operation . ... Instead, use mysql_error() to retrieve the error text. Note that this function only returns the error text from the most recently executed MySQL function (not including mysql_error() and mysql_errno() ), so if you want to use it, make sure you check the value before calling another MySQL function. <?php mysql_connect("marliesle"); echo mysql_errno().": ".mysql_error()." ...
[ Сохраненная копия ]  Ссылки http://oit.cmc.msu.ru/php/function.mysql-error.html -- 4.5 Кб -- 03.02.2002
Похожие документы

1703. mysql_escape_string
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.3) mysql_escape_string -- Escapes a string for use in a mysql_query. string mysql_escape_string ( string unescaped_string) . This function will escape the unescaped_string , so that it is safe to place it in a mysql_query() . Note: mysql_escape_string() does not escape % and _ . Prev . Home . Next . mysql_error . Up . mysql_fetch_array
[ Сохраненная копия ]  Ссылки http://oit.cmc.msu.ru/php/function.mysql-escape-string.html -- 3.7 Кб -- 03.02.2002
Похожие документы

1704. mysql_drop_db
PHP Manual . Prev . Next . PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) mysql_drop_db -- Drop (delete) a MySQL database . bool mysql_drop_db ( string database_name [, resource link_identifier]) . Returns TRUE on success, FALSE on failure. mysql_drop_db() attempts to drop (remove) an entire database from the server associated with the specified link identifier. ...
[ Сохраненная копия ]  Ссылки http://oit.cmc.msu.ru/php/function.mysql-drop-db.html -- 3.8 Кб -- 03.02.2002
Похожие документы

1705. mysql_errno
PHP Manual . ... Next . PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) mysql_errno -- Returns the numerical value of the error message from previous MySQL operation . ... Note that this function only returns the error code from the most recently executed MySQL function (not including mysql_error() and mysql_errno() ), so if you want to use it, make sure you check the value before calling another mySQL function. <?php mysql_connect("marliesle"); echo mysql_errno().": ".mysql_error()." ... mysql_error ...
[ Сохраненная копия ]  Ссылки http://oit.cmc.msu.ru/php/function.mysql-errno.html -- 4.5 Кб -- 03.02.2002
Похожие документы

1706. mysql_db_query
PHP Manual . ... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) mysql_db_query -- Send a MySQL query . resource mysql_db_query ( string database, string query [, resource link_identifier]) . ... If the optional link identifier isn't specified, the function will try to find an open link to the MySQL server and if no such link is found it'll try to create one as if mysql_connect() was called with no arguments . See also mysql_connect() and mysql_query() . ... Use mysql_select_db() and mysql_query() instead. ...
[ Сохраненная копия ]  Ссылки http://oit.cmc.msu.ru/php/function.mysql-db-query.html -- 4.4 Кб -- 03.02.2002
Похожие документы

1707. mysql_data_seek
... Next . PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) mysql_data_seek -- Move internal result pointer . bool mysql_data_seek ( resource result_identifier, int row_number) . ... php $link = mysql_pconnect( kron , jutta , geheim ) or die ( Could not connect ); mysql_select_db( samp_db ) or exit( Could not select database ); $ query = SELECT last_name, first_name FROM friends ; $ result = mysql_ query ($ query ) or die ( Query failed ); // fetch rows in reverse order for ($i = mysql_num_rows($ ...
[ Сохраненная копия ]  Ссылки http://oit.cmc.msu.ru/php/function.mysql-data-seek.html -- 4.8 Кб -- 03.02.2002
Похожие документы

1708. mysql_db_name
PHP Manual . ... Next . 3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) mysql_db_name -- Get result data . ... mysql_db_name() takes as its first parameter the result pointer from a call to mysql_list_dbs() . ... If an error occurs, FALSE is returned. ... Example 1. mysql_db_name() example . php error_reporting(E_ALL); mysql_connect('dbhost', 'username', 'password'); $db_list = mysql_list_dbs(); $i = 0; $cnt = mysql_num_rows($db_list); while ($i < $cnt) { echo mysql_db_name($db_list, $i) . ...
[ Сохраненная копия ]  Ссылки http://oit.cmc.msu.ru/php/function.mysql-db-name.html -- 4.5 Кб -- 03.02.2002
Похожие документы

1709. mysql_connect
PHP Manual . ... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) mysql_connect -- Open a connection to a MySQL Server . resource mysql_connect ( [string server [, string username [, string password]]]) . Returns a MySQL link identifier on success, or FALSE on failure. mysql_connect() establishes a connection to a MySQL server. ... The server parameter can also include a port number. eg. "hostname:port" or a path to a socket eg. ":/path/to/socket" for the localhost. ... mysql_close . ... mysql_create_db ...
[ Сохраненная копия ]  Ссылки http://oit.cmc.msu.ru/php/function.mysql-connect.html -- 5.5 Кб -- 03.02.2002
Похожие документы

1710. mysql_create_db
PHP Manual . Prev . Next . PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) mysql_create_db -- Create a MySQL database . bool mysql_create_db ( string database name [, resource link_identifier]) . ... Example 1. MySQL create database example . php $link = mysql_pconnect("kron", "jutta", "geheim") or exit("Could not connect"); if (mysql_create_db("my_db")) { print ("Database created successfully\n"); } else { printf ("Error creating database: %s\n", mysql_error ()); } ?> ... mysql_connect . ...
[ Сохраненная копия ]  Ссылки http://oit.cmc.msu.ru/php/function.mysql-create-db.html -- 4.4 Кб -- 03.02.2002
Похожие документы

1711. mysql_change_user
... 3.0.13 - 3.0.18 only) mysql_change_user -- Change logged in user of the active connection . int mysql_change_user ( string user, string password [, string database [, resource link_identifier]]) . mysql_change_user() changes the logged in user of the current active connection, or the connection given by the optional link_identifier parameter. ... If the new user and password authorization fails, the current connected user stays active. ...
[ Сохраненная копия ]  Ссылки http://oit.cmc.msu.ru/php/function.mysql-change-user.html -- 3.9 Кб -- 03.02.2002
Похожие документы

1712. mysql_close
... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) mysql_close -- Close MySQL connection . bool mysql_close ( [resource link_identifier]) . Returns TRUE on success, FALSE on failure. mysql_close() closes the connection to the MySQL server that's associated with the specified link identifier. If link_identifier isn't specified, the last opened link is used. ... php $link = mysql_connect("kraemer", "marliesle", "secret") or exit("Could not connect"); print ("Connected successfully"); mysql_close($link); ?> ...
[ Сохраненная копия ]  Ссылки http://oit.cmc.msu.ru/php/function.mysql-close.html -- 4.9 Кб -- 03.02.2002
Похожие документы

1713. mysql_affected_rows
PHP Manual . ... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) mysql_affected_rows -- Get number of affected rows in previous MySQL operation . int mysql_affected_rows ( [resource link_identifier]) . mysql_affected_rows() returns the number of rows affected by the last INSERT, UPDATE or DELETE query associated with link_identifier . ... Note: If you are using transactions, you need to call mysql_affected_rows() after your INSERT, UPDATE, or DELETE query, not after the commit. ... MySQL Functions . ...
[ Сохраненная копия ]  Ссылки http://oit.cmc.msu.ru/php/function.mysql-affected-rows.html -- 5.0 Кб -- 03.02.2002
Похожие документы

1714. msql_selectdb
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) msql_selectdb -- Select mSQL database . See msql_select_db() . Prev . Home . Next . msql_select_db . Up . msql_tablename
[ Сохраненная копия ]  Ссылки http://oit.cmc.msu.ru/php/function.msql-selectdb.html -- 3.2 Кб -- 03.02.2002
Похожие документы

1715. msql_tablename
PHP Manual . ... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) msql_tablename -- Get table name of field . string msql_tablename ( int query_identifier, int field) . msql_tablename() takes a result pointer returned by the msql_list_tables() function as well as an integer index and returns the name of a table. ... php msql_connect ("localhost"); $result = msql_list_tables ("wisconsin"); $i = 0; while ($i < msql_numrows ($result)) { $tb_names[$i] = msql_tablename ($result, $i); echo $tb_names[$i] . ...
[ Сохраненная копия ]  Ссылки http://oit.cmc.msu.ru/php/function.msql-tablename.html -- 4.2 Кб -- 03.02.2002
Похожие документы

1716. mSQL functions
... These functions allow you to access mSQL database servers. ... msql_affected_rows -- Returns number of affected rows . ... msql_dbname -- Get current mSQL database name . ... msql_fetch_field -- Get field information . ... msql_fieldname -- Get field name . ... msql_fieldtable -- Get table name for field . msql_fieldtype -- Get field type . ... msql_list_fields -- List result fields . ... msql_num_fields -- Get number of fields in result . ... msql_tablename -- Get table name of field . ... msql ...
[ Сохраненная копия ]  Ссылки http://oit.cmc.msu.ru/php/ref.msql.html -- 7.6 Кб -- 03.02.2002
Похожие документы

1717. msql_result
... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) msql_result -- Get result data . int msql_result ( int query_identifier, int i, mixed field) . Returns the contents of the cell at the row and offset in the specified mSQL result set. msql_result() returns the contents of one cell from a mSQL result set. The field argument can be the field's offset, or the field's name, or the field's table dot field's name (fieldname.tablename). ...
[ Сохраненная копия ]  Ссылки http://oit.cmc.msu.ru/php/function.msql-result.html -- 4.5 Кб -- 03.02.2002
Похожие документы

1718. msql_select_db
... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) msql_select_db -- Select mSQL database . int msql_select_db ( string database_name, int link_identifier) . Returns TRUE on success, FALSE on error. msql_select_db() sets the current active database on the server that's associated with the specified link identifier. ... If no link is open, the function will try to establish a link as if msql_connect() was called, and use it. Every subsequent call to msql_query() will be made on the active database. ...
[ Сохраненная копия ]  Ссылки http://oit.cmc.msu.ru/php/function.msql-select-db.html -- 4.2 Кб -- 03.02.2002
Похожие документы

1719. msql_query
PHP Manual . ... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) msql_query -- Send mSQL query . int msql_query ( string query, int link_identifier) . ... php $link = msql_connect("dbserver") or die("unable to connect to msql server: ".msql_error()); msql_select_db("db", $link) or die("unable to select database 'db': ".msql_error()); $result = msql_query("SELECT * FROM table WHERE id=1", $link); if (!$result) { die("query failed: ".msql_error()); } while ($row = msql_fetch_array($result)) { echo $row["id"]; } ?> ...
[ Сохраненная копия ]  Ссылки http://oit.cmc.msu.ru/php/function.msql-query.html -- 4.7 Кб -- 03.02.2002
Похожие документы

1720. msql_regcase
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) msql_regcase -- Make regular expression for case insensitive match . See sql_regcase() . Prev . Home . Next . msql_query . Up . msql_result
[ Сохраненная копия ]  Ссылки http://oit.cmc.msu.ru/php/function.msql-regcase.html -- 3.2 Кб -- 03.02.2002
Похожие документы

В начало ] Пред. | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | След.В конец ]

Rambler's Top100 RFBR Яндекс цитирования