RE: [PHP] Get current date and time

2001-09-29 Thread Kurt Lieber
How about one of the mirrors closer to you: http://php.nederland.net/ http://nl2.php.net/ http://nl.php.net/ Or are they all down, too? Regarding your specific question, you can find the answer either in the mySQL manual, as originally suggested, or even in the PHP manual as the second person

Re: [PHP] Get current date and time

2001-09-29 Thread Martin Kampherbeek
These worked. Thanks - Original Message - From: Kurt Lieber [EMAIL PROTECTED] To: 'Martin Kampherbeek' [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Sunday, September 30, 2001 2:34 AM Subject: RE: [PHP] Get current date and time How about one of the mirrors closer to you:

[PHP] COM

2001-09-29 Thread Mike
Hi All Where is some good info on useing COM or DCOM with PHP? Both of my scripts bellow fail and I cannot seem to find why. ?php $Instance = new COM (string Word.Application, string 216.0.0.0); ? or ? $word = new COM(word.application) or die(Unable to instanciate Word); print Loaded Word,

RE: [PHP] Problem with mail()

2001-09-29 Thread Michael Katz
Good call, rtrim() seems to have brought back my sanity! -Original Message- From: ReDucTor [mailto:[EMAIL PROTECTED]] Sent: Sunday, July 29, 2001 10:28 AM To: Martín Marqués; [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Problem with mail() You might want to check if there

[PHP] PHPEd

2001-09-29 Thread Kath
Is it worth picking up the retail NuSphere copy of PHPEd? I'm using the 1.75 Alpha now and enjoy it a lot over what I was using prior (Dreamweaver). Only peeve is what seems like a memory leak (PHPEd will crash after a bit of very minor web browser/message client/email use) in 1.75. Have

[PHP] sock prob

2001-09-29 Thread sagar N Chand
hi, the socket() function is not working on win2k. any help? thanx, /sagar

RE: [PHP] XHTML and PHP

2001-09-29 Thread Navid Yar
David, it works now! Matt Dreer pointed the solution out to me as well. I should have used: ?php echo(?xml version=\1.0\ encoding=\UTF-8\?\n); ? Thanks to both of you! One more simple question. I would like to understand how and why this renders correctly. I look at this script and to me there

[PHP] oci8.max_links missing from php.ini

2001-09-29 Thread John Lim
Hello, I checked the windows php.ini and i did not see any reference to oci8.allow_persistent=On ; allow or prevent persistent links oci8.check_persistent=On ; check that a connection is still validbefore reuse oci8.max_persistent=-1 ; maximum number of persistent links. -1 means no limit

[PHP] Real tip about XML and PHP

2001-09-29 Thread Augusto Cesar Castoldi
This week I've been looking for functions to work with XML. If you want to create XML files, always use DOMXML functions (php compile --with-dom). Here is some code: ? $doc = new_xmldoc ('1.0'); $root = $doc-add_root('sites'); $site = $root-new_child('site', '');

[PHP] Subroutines

2001-09-29 Thread Chris Herring
I've looked through the manual (or at least searched) for subroutines, and I can't find them, there's a guy I know who made a script with custom PHP subroutines. (http://b000.net/) Anyway, I want to know how to make them. Thanks for any input.

Re: [PHP] Subroutines

2001-09-29 Thread Chris Herring
My bad, http://www.b000.net/code/ - Original Message - From: Chris Herring [EMAIL PROTECTED] To: php list [EMAIL PROTECTED] Sent: Sunday, September 30, 2001 1:07 AM Subject: [PHP] Subroutines I've looked through the manual (or at least searched) for subroutines, and I can't find them,