[PHP] Re: Where is php.ini located by default?

2001-04-28 Thread yanto
i think the easiest way to see php setting is by running info.php script. if it's not on your webserver, just create one php file with content like this : ? echo phpinfo() ?; -toto- idban secandri writes: On Saturday 28 April 2001 01:23, you wrote: It's /usr/local/lib/php.ini NEW:

[PHP] Re: check if an url is valid

2001-04-27 Thread yanto
there is no pure fopen function available to connect to other site. because basically fopen use to open file (file open). fopen in php just try to facilite programmer with human friendly name, but inside, when the argument is url, it'll make standard socket connection like any other tcp/ip

[PHP] database server comparation

2001-04-20 Thread yanto
Hi is there one one know about any site explain comparation among database server software from various perspective. thanx. -toto- -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the

[PHP] Re: Many email... and just one mail function

2001-04-20 Thread yanto
all you need is to write cron file (with your preferable script) running every week. Than read customer list information (connect to pop server, or customer database, or if every customer has an email, just read from customer table), then use your preferable smtp mail to send an email to that

[PHP] Re: Newbie question: Page Counter

2001-04-19 Thread yanto
this counter'll increment the counter, no matter where are you go the page from. If you only want that the counter increment for the first time visitor visit the website, put the code at mainpage file, and check also the page referrer weather it's a local url or not. -toto- Adam writes:

[PHP] Re: Regular Expressions?

2001-04-19 Thread yanto
(eregi("([0-9][a-z][A-Z]\.[0-9][a-z][A-Z]", $myArray[x])) and don't use character '^' in front of the pattern. -toto- Jason Caldwell writes: I'm looking to compare if my array values match any digits or alpha characters with a dot between them... so, if I think I understand Regular