RE: [PHP] LOBs

2004-05-10 Thread Fidencio Monroy
sorry, the specifications are php 4.3.6RC1 as a CGI on apache 1.3 using oci functions and connecting to an 8.1.7.4.1 oracle database Thanks -Original Message- From: Fidencio Monroy [mailto:[EMAIL PROTECTED] Sent: Monday, May 10, 2004 12:29 AM To: (PHP General List) Subject: [PHP] LOBs

[PHP] PHP 5 Documentation

2004-05-10 Thread Fidencio Monroy
Does PHP 5 documentation exist? I have not found it in php.net. can someone send link please? Tnx

[PHP] LOBs

2004-05-10 Thread Fidencio Monroy
. Fidencio Monroy.

[PHP] Oracle 8 functions

2004-05-05 Thread Fidencio Monroy
statement; but every kind of statement i send it returns different of false, including on purpose error to check it. do i need to do something before the call to ociparse()? this is an ora 8.1.7.4.1 database, php 4.3.6RC1 as a CGI on apache 1.3. Thanks in advance. Fidencio Monroy.

RE: [PHP] Oracle 8 functions

2004-05-05 Thread Fidencio Monroy
Thanks, i catch the prob, after ociparse(), using ocifetchinto, the indexes in the array are generated as UPPERCASE... -Original Message- From: Fidencio Monroy [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 05, 2004 2:08 PM To: (PHP General List) Subject: [PHP] Oracle 8 functions Hi, im

[PHP] Cookies

2004-04-19 Thread Fidencio Monroy
Hi all, is there a way to check is a browser is accepting my cookies? Tnx

[PHP] Image output (Newb question)

2004-04-02 Thread Fidencio Monroy
Hi, I need to display some PNG pictures in a script; from help I got $im = imagecreatefrompng(images/map.png); imagepng($im); It outputs the binary data as a string, kind of trash; what do I need to set to tell the browser how to interpret it? Thanks. Fidencio Monroy.

RE: [PHP] Image output (Newb question)

2004-04-02 Thread Fidencio Monroy
, 2004 1:58 AM To: [EMAIL PROTECTED] Subject: RE: [PHP] Image output (Newb question) Header (Content-type: image/png); $im = imagecreatefrompng(images/map.png); imagepng($im); ImageDestroy ($im); -Original Message- From: Fidencio Monroy [mailto:[EMAIL PROTECTED] Sent: 02 April 2004 10:55

RE: [PHP] Image output (Newb question)

2004-04-02 Thread Fidencio Monroy
This is the entire html doc !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN http://www.w3.org/TR/html4/loose.dtd; html head titleUntitled Document/title meta http-equiv=Content-Type content=text/html;

RE: [PHP] Image output (Newb question)

2004-04-02 Thread Fidencio Monroy
Np, but I do not understand: Do should I remove all the html tags before the script? (I used your format in last script with the same result) Thanks -Original Message- From: Matt Matijevich [mailto:[EMAIL PROTECTED] Sent: Friday, April 02, 2004 1:35 PM To: Matt Matijevich; [EMAIL

RE: [PHP] Image output (Newb question)

2004-04-02 Thread Fidencio Monroy
This way works fine!! Thank you very much. -Original Message- From: Matt Matijevich [mailto:[EMAIL PROTECTED] Sent: Friday, April 02, 2004 2:10 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: RE: [PHP] Image output (Newb question) you should have script, call it image.php or