[PHP] PHP + DB2

2001-12-17 Thread Rares Vasilescu
hi Anyone here used PHP to connect to a IBM DB2 database? Of course, using ODBC. I am having difficulties calling stored procedures with input/output parameters. Any help is appreciated. Rares

Re: [PHP] PHP + DB2

2001-12-17 Thread Rares Vasilescu
(2,?); $result = odbc_prepare($link,$ps); $arrparam = array(1); $rst = odbc_execute($result, $arrparam); echo $arrparam[0]; and no luck. Also, what ODBC drivers are you using? IBM DB2 ODBC DRIVER 7.01.00.40 I appreciate any suggestion. Rares -- PHP General Mailing List (http

Re: [PHP] Re: php 4.1.0 output compression

2001-12-13 Thread Rares Vasilescu
(as i tried to implement this for myself). Thanks for your aswer, Rares -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP] PHP + DB2 @ Win2k

2001-12-13 Thread Rares Vasilescu
details. Thanks, Rares

[PHP] php 4.1.0 output compression

2001-12-12 Thread Rares Vasilescu
Anyone has tried out yet the output compression? How does it work, is it really stable? Rares

re: [PHP] File upload !!!

2001-05-14 Thread Rares
Is your file greater than 1000 bytes? If it is, this is the answer: the file you try to upload is too large. Increase the limit (beware of the built-in limit of PHP - in php.ini) INPUT TYPE="hidden" name="MAX_FILE_SIZE" value="1000" -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] Newbie redirect/variable question

2001-05-10 Thread Rares
hey! what's that 'echo' doing there? if you want to use header (and you want to) it must be the firts thing you output from your script so.. first of all loose the 'echo' stuff - Original Message - From: Steve Wade [EMAIL PROTECTED] Here's redirect.php: ?php echo $fred; -- PHP

Re: [PHP] Textarea returns causing havoc

2001-05-09 Thread Rares
Here is how i do it, and it works: $tmp_desc = str_replace(\t, , str_replace(\n, , str_replace(\r, , $desc))); $desc = $tmp_desc; \t for stipping TABs also - Original Message - From: Sam [EMAIL PROTECTED] Subject: [PHP] Textarea returns causing havoc Hi all, into this: Hi my