recent searches:
include functions ,
variable functions ,
post functions...
If you are new to PHP or just need to refresh your skills, this is the place to start. This series of tutorials will give you the basic knowledge you will need to create a simple PHP website.
PHP is a reflective programming language originally designed for producing dynamic web pages.[1] PHP is used mainly in server-side scripting, but can be used from a command line interface or in standalone graphical applications. Textual User Interfaces can also be created using ncurses.
These functions allow you to access mSQL database servers. More information about mSQL can be found at http://www.hughes.com.au/.
In order to have these functions available, you must compile PHP with
msql support by using the
--with-msql[=DIR] option. DIR is the mSQL
base install directory, defaults to /usr/local/msql3.
Note to Win32 Users: In order for this extension to work, there are DLL files that must be available to the Windows system PATH. See the FAQ titled "How do I add my PHP directory to the PATH on Windows" for information on how to do this. Although copying DLL files from the PHP folder into the Windows system directory also works (because the system directory is by default in the systems PATH), it is not recommended. This extension requires the following files to be in the PATH: msql.dll
The behaviour of these functions is affected by settings in php.ini.
Table 1. mSQL configuration options
| Name | Default | Changeable | Changelog |
|---|---|---|---|
| msql.allow_persistent | "1" | PHP_INI_ALL | |
| msql.max_persistent | "-1" | PHP_INI_ALL | |
| msql.max_links | "-1" | PHP_INI_ALL |
Here's a short explanation of the configuration directives.
There are two resource types used in the mSQL module. The first one is the link identifier for a database connection, the second a resource which holds the result of a query.
The constants below are defined by this extension, and will only be available when the extension has either been compiled into PHP or dynamically loaded at runtime.
This simple example shows how to connect, execute a query, print resulting rows and disconnect from a mSQL database.
Another Useful functions:
ref.msql | function.msql | function.msql-tablename | function.msql-select-db | function.msql-result | function.msql-regcase | function.msql-query | function.msql-pconnect | function.msql-numrows | function.msql-numfields | function.msql-num-rows | function.msql-num-fields | function.msql-list-tables | function.msql-list-fields | function.msql-list-dbs | function.msql-free-result | function.msql-fieldtype | function.msql-fieldtable | function.msql-fieldname | function.msql-fieldlen | function.msql-fieldflags | function.msql-field-type | function.msql-field-table | function.msql-field-seek | function.msql-field-name | function.msql-field-len | function.msql-field-flags | function.msql-fetch-row | function.msql-fetch-object | function.msql-fetch-field | function.msql-fetch-array | function.msql-error | function.msql-drop-db | function.msql-dbname | function.msql-db-query | function.msql-data-seek | function.msql-createdb | function.msql-create-db | function.msql-connect | function.msql-close | function.msql-affected-rows |
PHP is a widely-used general-purpose scripting language that is especially suited for Web development and can be embedded into HTML. If you are new to PHP and want to get some idea of how it works, try the introductory tutorial. After that, check out the online manual, and the example archive sites and some of the other resources available in the links section.