[PHP-DB] Interbase help

2001-01-26 Thread Mage
Hello! I have just installed the Interbase 6.01 on a debian server. I compiled he php with: "/configure --with-mysql=/usr/local/mysql --with-apache=../apache_1.3.14 --enable-track -vars --with-interbase=/opt/interbase" but I get this error message: "Fatal error: Call to undefined function:

RE: [PHP-DB] MySQL/PHP Form Addslashes() command

2001-01-26 Thread Rubanowicz, Lisa
I am a beginner but did it like this, with a little help from my friends!! $query = "INSERT INTO guests "; $query .= "(guest_id, guest_name, "; $query .= "guest_email, guest_time, guest_message) "; $query .= "values(, '$name', '$email', NULL, '" . str_replace("\n","br", $message)

Odp: [PHP-DB] Problems with character sets

2001-01-26 Thread Jarek Zgoda
Od: "magor" [EMAIL PROTECTED] Temat: [PHP-DB] Problems with character sets Hello everybody, I have problems concerning character sets.I use InterBase database. I have data in columns with character set NONE, but the data is in fact in win1250 coding. I have other columns with character

[PHP-DB] failure notice

2001-01-26 Thread Mike
Hi. This is the qmail-send program at toye.php.net. I'm afraid I wasn't able to deliver your message to the following addresses. This is a permanent error; I've given up. Sorry it didn't work out. [EMAIL PROTECTED]: ezmlm-manage: fatal: message already has a Mailing-List header (maybe I should

[PHP-DB] failure notice

2001-01-26 Thread Mike
Hi. This is the qmail-send program at toye.php.net. I'm afraid I wasn't able to deliver your message to the following addresses. This is a permanent error; I've given up. Sorry it didn't work out. [EMAIL PROTECTED]: ezmlm-manage: fatal: message already has a Mailing-List header (maybe I should

[PHP-DB] failure notice

2001-01-26 Thread Mike
Hi. This is the qmail-send program at toye.php.net. I'm afraid I wasn't able to deliver your message to the following addresses. This is a permanent error; I've given up. Sorry it didn't work out. [EMAIL PROTECTED]: ezmlm-manage: fatal: message already has a Mailing-List header (maybe I should

Re: [PHP-DB] $result = true or false??

2001-01-26 Thread JJeffman
The "mysql_db_query()" and "mysql_query()" functions only return false (0) when you have an error in your query or parameter definition, otherwise they always return a positive result identifier. So, if you must know if is there any valid record you should ask for the row number returned : //

Re: [PHP-DB] MySQL/PHP Form Addslashes() command

2001-01-26 Thread JJeffman
There is the "nl2br()" function too : // From php manual : nl2br -- Converts new lines to HTML line breaks. Description string nl2br(string string); Returns string with 'BR' inserted before all new lines. HTH Jayme. http://www.conex.com.br/jjeffman -Mensagem Original- De:

Re: [PHP-DB] Oracle OCI8 and rowid

2001-01-26 Thread Harry Ng
Try converting the ROWID to a character string first: select rowidtochar(rowid), field1 from table1 Now you can echo it out or do whatever you would do with a character string. There's also the Oracle function CHARTOROWID to go the other way around. signup wrote: On Mon, Jan 22, 2001 at

Re: [PHP-DB] MySQL/PHP Form Addslashes() command

2001-01-26 Thread Mage
Hello! JJeffman wrote: There is the "nl2br()" function too : // From php manual : nl2br -- Converts new lines to HTML line breaks. Description string nl2br(string string); Returns string with 'BR' inserted before all new lines. Sure, but never add any html tag to the

Re: [PHP-DB] pop up windows

2001-01-26 Thread Tom Carter
Hi John, The essential difference between PHP and JavaScript is that PHP is server-side and JavaScript client side. What this means is that when a user requests a PHP page, all the functions, commands etc are run on the server and then sent to the users machine, where as with JS the code is