Query: ingres_escape_string
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
INGRES_ESCAPE_STRING(3) 1 INGRES_ESCAPE_STRING(3) ingres_escape_string - Escape special characters for use in a querySYNOPSISstring ingres_escape_string (resource $link, string $source_string)DESCRIPTIONingres_escape_string(3) is used to escape certain characters within a string before it is sent to the database server.PARAMETERSo $link - The connection link identifier o $source_string - The source string to be parsedRETURN VALUESReturns a string containing the escaped data.EXAMPLESExample #1 Escape special characters for use in a query <?php $link = ingres_connect($database, $user, $password); $last_name = "O'Connor"; $sql = sprintf("select * from user_profile where up_last = '%s'", ingres_escape_string( $link, $last_name)); $result = ingres_query($link, $sql); while ($user = ingres_fetch_object($result)) { echo $user->up_first . '<BR/>'; } ingres_commit($link); ingres_close($link); ?>SEE ALSOingres_query(3). PHP Documentation Group INGRES_ESCAPE_STRING(3)
Related Man Pages |
---|
ingres_errno(3) - php |
ingres_error(3) - php |
ingres_fetch_row(3) - php |
ingres_prepare(3) - php |
ingres_unbuffered_query(3) - php |
Similar Topics in the Unix Linux Community |
---|
User Guide: Posting in the Emergency Forum |
Coming Soon: Upgrade Forum Software (Dec 31 - Jan 1) |
Denial Of Service Attack Update |
Please Welcome Nicki Paul to the Moderator Team! |