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

В начало ] Пред. | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | След.В конец ]

Упорядочить по: URL  |  дате изменения
921. session_save_path
PHP Manual . Prev . Next . PHP 4 >= 4.0.0) session_save_path -- Get and/or set the current session save path . string session_save_path ( [string path]) . session_save_path() returns the path of the current directory used to save session data. If path is specified, the path to which data is saved will be changed. Note: On some operating systems, you may want to specify a path on a filesystem that handles lots of small files efficiently. ... session_module_name . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.session-save-path.html -- 3.8 Кб -- 03.02.2002
Похожие документы

922. session_destroy
PHP Manual . ... PHP 4 >= 4.0.0) session_destroy -- Destroys all data registered to a session . ... If you are using session_name("something"), don't forget it now! session_start(); // Unset all of the session variables. session_unset(); // Finally, destroy the session. session_destroy(); ?> ... If you are using session_name("something"), don't forget it now! session_start(); // Unset all of the session variables. unset($_SESSION); // Finally, destroy the session. session_destroy(); ?> ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.session-destroy.html -- 4.8 Кб -- 03.02.2002
Похожие документы

923. session_name
... PHP 4 >= 4.0.0) session_name -- Get and/or set the current session name . ... session_name() returns the name of the current session. ... The session name is reset to the default value stored in session.name at request startup time. Thus, you need to call session_name() for every request (and before session_start() or session_register() are called). ... php // set the session name to WebsiteID $previous_name = session_name("WebsiteID"); echo "The previous session name was $previous_name<p>"; ?> ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.session-name.html -- 4.6 Кб -- 03.02.2002
Похожие документы

924. session_start
... PHP 4 >= 4.0.0) session_start -- Initialize session data . ... If you want to use a named session, you must call session_name() before calling session_start() . ... Note: If you are using cookie-based sessions, you must call session_start() before anything is output to the browser. session_start() will register internal output handler for URL rewriting when trans-sid is enabled. If a user uses ob_gzhandler or like with ob_start() , the order of output handler is important for proper output. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.session-start.html -- 4.6 Кб -- 03.02.2002
Похожие документы

925. sesam_seek_row
... unknown) sesam_seek_row -- Set scrollable cursor mode for subsequent fetches . bool sesam_seek_row ( string result_id, int whence [, int offset]) . result_id is a valid result id (select type queries only, and only if a "scrollable" cursor was requested when calling sesam_query() ). whence sets the global default value for the scrolling type, it specifies the scroll type to use in subsequent fetch operations on "scrollable" cursors, which can be set to the following predefined constants: . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.sesam-seek-row.html -- 6.2 Кб -- 03.02.2002
Похожие документы

926. SESAM database functions
... SESAM/SQL-Server is a mainframe database system, developed by Fujitsu Siemens Computers, Germany. ... Now there is a PHP3 SESAM interface available which allows database operations via PHP-scripts. Configuration notes: There is no standalone support for the PHP SESAM interface, it works only as an integrated Apache module. ... Required for using SESAM functions. ... Cursor Types: The result cursors which are allocated for SQL "select type" queries can be either "sequential" or "scrollable". ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/ref.sesam.html -- 23.5 Кб -- 03.02.2002
Похожие документы

927. sesam_free_result
. PHP Manual . Prev . Next . (unknown) sesam_free_result -- Releases resources for the query . int sesam_free_result ( string result_id) . Releases resources for the query associated with result_id . Returns FALSE on error. Prev . Home . Next . sesam_seek_row . Up . Session handling functions
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.sesam-free-result.html -- 3.3 Кб -- 03.02.2002
Похожие документы

928. sesam_fetch_array
... unknown) sesam_fetch_array -- Fetch one row as an associative array . array sesam_fetch_array ( string result_id [, int whence [, int offset]]) . ... Each result column is stored with an associative index equal to its column (aka. field) name. ... ORDER BY FIRSTNAME", 1); if (!$result) { ... error ... } // print the table: print "<TABLE BORDER>\n"; while (($row = sesam_fetch_array ($result)) && count ($row) > 0) { print " <TR>\n"; print " <TD>".htmlspecialchars ($row["firstname"])." ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.sesam-fetch-array.html -- 7.6 Кб -- 03.02.2002
Похожие документы

929. sesam_fetch_row
... unknown) sesam_fetch_row -- Fetch one row as an array . array sesam_fetch_row ( string result_id [, int whence [, int offset]]) . ... seek to absolute row number given as offset (Zero-based. ... ORDER BY FIRSTNAME", 1); if (!$result) { ... error ... } // print the table in backward order print "<TABLE BORDER>\n"; $row = sesam_fetch_row ($result, SESAM_SEEK_LAST); while (is_array ($row)) { print " <TR>\n"; for ($col = 0; $col < $row["count"]; ++$col) { print " <TD>".htmlspecialchars ($row[$col])." ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.sesam-fetch-row.html -- 9.7 Кб -- 03.02.2002
Похожие документы

930. sesam_field_array
... array sesam_field_array ( string result_id) . ... int $arr["count"] . ... SESAM "multiple fields" are "inlined" and treated like the respective number of columns. string $arr[col]["name"] . ... SESAM "multiple fields" are "inlined" and treated like the respective number of columns, each with the same column name. string $arr[col]["count"] . ... SESAM "multiple fields" are "inlined" and treated like the respective number of columns, each with the same length attribute. string $arr[col]["precision"] ....
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.sesam-field-array.html -- 8.9 Кб -- 03.02.2002
Похожие документы

931. sesam_errormsg
. PHP Manual . Prev . Next . (unknown) sesam_errormsg -- Returns error message of last SESAM call . string sesam_errormsg ( (void);) . Returns the SESAM error message associated with the most recent SESAM error. if (!sesam_execimm ($stmt)) printf ("%s<br>\n", sesam_errormsg()); . See also: sesam_diagnostic() for the full set of SESAM SQL status information . Prev . Home . Next . sesam_affected_rows . Up . sesam_field_array
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.sesam-errormsg.html -- 3.7 Кб -- 03.02.2002
Похожие документы

932. sesam_fetch_result
... unknown) sesam_fetch_result -- Return all or part of a query result . mixed sesam_fetch_result ( string result_id [, int max_rows]) . Returns a mixed array with the query result entries, optionally limited to a maximum of max_rows rows. ... int $arr["rows"] . number of rows in result set (between zero and max_rows ) . ... result data for all the fields at row( row ) and column( col ), (where the integer index row is between 0 and $arr["rows"]-1 , and col is between 0 and $arr["count"]-1 ). ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.sesam-fetch-result.html -- 6.3 Кб -- 03.02.2002
Похожие документы

933. sesam_affected_rows
... Next . unknown) sesam_affected_rows -- Get number of rows affected by an immediate query . int sesam_affected_rows ( string result_id) . ... Returns the number of rows affected by a query associated with result_id . ... The number returned is the number of affected rows. ... result = sesam_execimm ("DELETE FROM PHONE WHERE LASTNAME = '".strtoupper ($name)."'"); if (!$result) { ... error ... } print sesam_affected_rows ($result). " entries with last name ".$name." deleted.\n" . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.sesam-affected-rows.html -- 4.6 Кб -- 03.02.2002
Похожие документы

934. sesam_diagnostic
... php // Function which prints a formatted error message, // displaying a pointer to the syntax error in the // SQL statement function PrintReturncode ($exec_str) { $err = Sesam_Diagnostic(); $colspan=4; // 4 cols for: sqlstate, errlin, errcol, rowcount if ($err["errlin"] == -1) --$colspan; if ($err["errcol"] == -1) --$colspan; if ($err["rowcount"] == 0) --$colspan; echo "<TABLE BORDER>\n"; echo "<TR><TH COLSPAN=".$colspan." ... TH></TR>\n"; if ($err["errcol"] >= 0) { echo "<TR><TD COLSPAN=".$colspan....
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.sesam-diagnostic.html -- 8.2 Кб -- 03.02.2002
Похожие документы

935. sesam_field_name
... Prev . Next . unknown) sesam_field_name -- Return one column name of the result set . int sesam_field_name ( string result_id, int index) . Returns the name of a field (i.e., the column name) in the result set, or FALSE on error. For "immediate" queries, or for dynamic columns, an empty string is returned. Note: The column index is zero-based, not one-based as in SESAM. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.sesam-field-name.html -- 3.9 Кб -- 03.02.2002
Похожие документы

936. sesam_num_fields
... Prev . Next . unknown) sesam_num_fields -- Return the number of fields/columns in a result set . ... After calling sesam_query() with a "select type" query, this function gives you the number of columns in the result. Returns an integer describing the total number of columns (aka. fields) in the current result_id result set or FALSE on error. ... The SESAM "multiple field" columns count as their respective dimension, i.e., a three-column "multiple field" counts as three columns. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.sesam-num-fields.html -- 4.1 Кб -- 03.02.2002
Похожие документы

937. sesam_execimm
... unknown) sesam_execimm -- Execute an "immediate" SQL-statement . ... Returns: A SESAM "result identifier" on success, or FALSE on error. sesam_execimm() executes an "immediate" statement (i.e., a statement like UPDATE, INSERT or DELETE which returns no result, and has no INPUT or OUTPUT variables). "select type" queries can not be used with sesam_execimm() . ... An attempt to use SELECT type queries with sesam_execimm() will return $err["sqlstate"] == "42SBW" . ... sesam_query ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.sesam-execimm.html -- 5.2 Кб -- 03.02.2002
Похожие документы

938. sesam_query
... unknown) sesam_query -- Perform a SESAM SQL query and prepare the result . string sesam_query ( string query [, bool scrollable]) . ... php if (!sesam_connect ("phonedb", "demo", "otto")) die ("cannot connect"); $result = sesam_query ("select * from phone"); if (!$result) { $err = sesam_diagnostic(); die ($err["errmsg"]); } echo "<TABLE BORDER>\n"; // Add title header with column names above the result: if ($cols = sesam_field_array ($result)) { echo " <TR><TH COLSPAN=".$cols["count"]." ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.sesam-query.html -- 7.2 Кб -- 03.02.2002
Похожие документы

939. sesam_commit
... Next . unknown) sesam_commit -- Commit pending updates to the SESAM database . ... sesam_commit() commits any pending updates to the database. Note that there is no "auto-commit" feature as in other databases, as it could lead to accidental data loss. ... See also: sesam_rollback() . ... php if (sesam_connect ("mycatalog", "myschema", "otto")) { if (!sesam_execimm ("INSERT INTO mytable VALUES (*, 'Small Test', <0, 8, 15>)")) die("insert failed"); if (!sesam_commit()) die("commit failed"); } ?> ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.sesam-commit.html -- 4.6 Кб -- 03.02.2002
Похожие документы

940. sesam_rollback
PHP Manual . Prev . Next . unknown) sesam_rollback -- Discard any pending updates to the SESAM database . ... sesam_rollback() discards any pending updates to the database. ... See also: sesam_commit() . ... php if (sesam_connect ("mycatalog", "myschema", "otto")) { if (sesam_execimm ("INSERT INTO mytable VALUES (*, 'Small Test', <0, 8, 15>)") && sesam_execimm ("INSERT INTO othertable VALUES (*, 'Another Test', 1)")) sesam_commit(); else sesam_rollback(); } ?> ... sesam_commit . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.sesam-rollback.html -- 4.5 Кб -- 03.02.2002
Похожие документы

В начало ] Пред. | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | След.В конец ]

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