[PHP-WIN] Re: [PHP-I18N] Re: [PHP-WIN] how to get php_gettext.dll work on windows2000 / iis5 server?

2001-11-14 Thread Zak Greant
o file is resided? > > Anybody got any hints? (the gnu-gettext documentation seems to be > very unix based) Drop by http://www.php-er.com and take a look at the chapter on gettext. I have written a complete overview of using gettext with PHP. It is also Unix-centric, but it is easier to

Re: [PHP-WIN] RE:escape loop on timeout

2001-05-22 Thread Zak Greant
Brendan wrote: > Thanks guys > > sorry about the delay .. I am in Australia.. > checking the time each loop would only work if the loops complete correctly > .. if the process locks mid loop php wont reach the criterion break because > it deals with each command linearly. ie > > for (x=0;x!="array

Re: [PHP-WIN] escape loop on timeout

2001-05-22 Thread Zak Greant
Johan Lundqvist wrote: > This is a way of doing it: > > $s = time() + 10; > for ($i = time(); $i <= $s; $i++) { > print $i; > } > > Will run for about ten seconds... Did you leave a bit of code out? In most cases, this will run for only a few milliseconds. :) Try something like

Re: [PHP-WIN] My SQL

2001-05-16 Thread Zak Greant
Open a Command Prompt CD into your mysql bin directory (often c:\mysql\bin\) Run the command Ciao, Zak - Original Message - From: "Manesh Manickam" <[EMAIL PROTECTED]> To: "Zak Greant" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday,

Re: [PHP-WIN] My SQL

2001-05-16 Thread Zak Greant
Manesh, Don't be surprised that people are less than helpful when you sent a huge (34k) message to the list! :) The command you need is this: mysql db_name < nuke.sql Change the db_name to whatever database you want the tables to appear in. All of this info is in the MySQL docs. --zak --

Re: [PHP-WIN] PHP and windowing

2001-05-06 Thread Zak Greant
Hi Bob, You are correct. PHP is server-side only. --zak - Original Message - From: "Bob Sears" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, May 06, 2001 2:45 AM Subject: [PHP-WIN] PHP and windowing > > In reading through my PHP text, I find no great references to PHP's >

Re: [PHP-WIN] PHP equiv of ASP "Request.ServerVariables( "SCRIPT_NAME" )"

2001-05-01 Thread Zak Greant
r.gelstharp wrote: > Is there a PHP equivalent of "Request.ServerVariables( "SCRIPT_NAME" )" from > ASP? The value will be available in the $HTTP_SERVER_VARS array as $HTTP_SERVER_VARS['SCRIPT_NAME'] and/or as $SCRIPT_NAME or via the getenv() function. You really should review th

Re: [PHP-WIN] custom functions/procedures in PHP

2001-05-01 Thread Zak Greant
This information can be found in the PHP manual Main Link: http://www.php.net/manual/en/ Function specific information: http://www.php.net/manual/en/functions.php --zak - Original Message - From: "r.gelstharp" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, May 01, 2001 2:30