[PHP-WIN] Re: Installation Woes.

2004-09-23 Thread memoimyself
Jim, Below are a few comments and questions for you: On 22 Sep 2004 at 6:41, Jim Bailey wrote: > I'm a well seasoned developer dipping my toe into PHP/Apache/MySQL. > I installed Mozilla FireFox Version 0.9.3 and > PHP4.3.8 and > Apache 1.3.31 running in > Windows 2000 Version 5 SP 4. Fine, but

[PHP-WIN] Oracle statement handles... or resources in general

2004-09-23 Thread Mikey
Hi NG! Consider the following piece of (simplified) code: $sql = "SELECT * FROM table"; $sth = ociparse ($conn, $sql); ociexecute ($sth); $sql = "SELECT * FROM table2"; $sth = ociparse ($conn, $sql); ociexecute ($sth); I have just been reading an article on php|arch that states that each open st

[PHP-WIN] Re: PHP Image creation

2004-09-23 Thread Mikey
No there is no way to inline an image using HTML. The output from phpinfo() shows the following code for the image: This is actually how the PHP Easter egg works too - try appending "?=PHPE9568F34-D428-11d2-A769-00AA001ACF42" to any PHP page. Mikey - Original Message - From: "Riaan St

[PHP-WIN] Re: Date Formatting

2004-09-23 Thread Mikey
Have you looked at the strtotime() function? Off the top of my head, it should look a bit like this: $out = date ("m/d/Y", strtotime ("Sep 12 2004 2:16AM")); HTH, Mikey - Original Message - From: "Ron Herhuth" <[EMAIL PROTECTED]> Newsgroups: php.windows To: <[EMAIL PROTECTED]> Sent: W

[PHP-WIN] Re: Strange result returned from Oracle

2004-09-23 Thread Mikey
Thanks! I am still puzzled as to why it should return that value though :-/ Mikey - Original Message - From: "Francesco" <[EMAIL PROTECTED]> Newsgroups: php.windows To: <[EMAIL PROTECTED]> Sent: Wednesday, September 22, 2004 2:17 PM Subject: Re: Strange result returned from Oracle > Mi