PHP Velho Oeste 2024

ifx_create_char

(PHP 4, PHP 5 < 5.2.1)

ifx_create_charCrée un objet char

Description

ifx_create_char ( string $param ) : int

Crée un objet char.

Liste de paramètres

param

Le contenu du char.

Valeurs de retour

Retourne l'identifiant vers le nouvel objet char, ou FALSE si une erreur survient.

Voir aussi

add a note add a note

User Contributed Notes 1 note

up
0
evandrosimenes at gmail dot com
13 years ago
Example of ifx_create_char use:
i'd a problem with textarea content, the informix server was returning the -282 error code: Found a quote for which there is no matching quote...

This was the solution for me...i hope it can help someone else having this problem:

<?php
$textarea
= $_POST[textarea];
$char = ifx_create_char($textarea);
$txt[] = $char;
$query = 'INSERT INTO <table> (id, title, status, content) VALUES (0,"'.$title.'","'.$status.'",?)';
if (!(
$execute = ifx_query($query,$conn_id,$txt))){
   echo
"Error on insert...".ifx_error();
} else {
   echo
"<script>alert('Success');</script>";   
}
?>
To Top