Prev | Current Page 116 | Next

W. Jason Gilmore

"Beginning PHP and MySQL: From Novice to Professional"

If magic_
quotes_sybase is enabled, all data returned from an external resource will be escaped
using a single quote rather than a backslash. This is useful when the data is being
returned from a Sybase database, which employs a rather unorthodox requirement of
escaping special characters with a single quote rather than a backslash.
auto_prepend_file = string
Scope: PHP_INI_SYSTEM; Default value: NULL
Creating page header templates or including code libraries before a PHP script is
executed is most commonly done using the include() or require() function. You can
automate this process and forgo the inclusion of these functions within your scripts by
assigning the file name and corresponding path to the auto_prepend_file directive.
auto_append_file = string
Scope: PHP_INI_SYSTEM; Default value: NULL
Automatically inserting footer templates after a PHP script is executed is most
commonly done using the include() or require() functions. You can automate this
process and forgo the inclusion of these functions within your scripts by assigning
the template file name and corresponding path to the auto_append_file directive.
default_mimetype = string
Scope: PHP_INI_ALL; Default value: text/html
MIME types offer a standard means for classifying file types on the Internet. You
can serve any of these file types via PHP applications, the most common of which is
text/html.


Pages:
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128