RE: [PHP-WIN] PHP as an Apache module

2002-03-26 Thread Ali Nayeri
that worked! thank you! I just got another question. when i ran a phpinfo script it gave me info that was wrong: Configuration File (php.ini) Path ---> c:\winnt -->but i got winMe and the ini is actually in c:\windows\system\ and then ofcourse it doesn't load my extensions and the rest of forma

RE: [PHP-WIN] PHP as an Apache module

2002-03-26 Thread Tommy Claasens / QDC KZN
Dont add the LoadModule in the top of the file, Just add it at the end of the file. It will work fine there i.e. [httpd.conf] . . . . . LoadModule php4_module C:/Program Files/Apache Group/PHP/sapi/php4apache.dll AddType application/x-httpd-php .php -Original Message- From: Ali [mailto:[

Re: [PHP-WIN] PHP as an Apache module

2002-03-26 Thread Helphand
At 06:32 PM 3/26/02 -0800, Ali wrote: >hi all, > >i'm new to PHP and PHP installation. I've tried it before and used the cgi >since I couldn't figure out the module installation. but i really want to >get it working. the problem is whatever I do, I get an error message from >Apache. I installe

php-windows Digest 27 Mar 2002 02:40:22 -0000 Issue 1064

2002-03-26 Thread php-windows-digest-help
php-windows Digest 27 Mar 2002 02:40:22 - Issue 1064 Topics (messages 12759 through 12767): Re: connecting to a database using ODBC 12759 by: Piotr Pluciennik 12760 by: Svensson, B.A.T. (HKG) Lecture de cookie ASP 12761 by: Kriegers Horst Re: Read ASP cookie

[PHP-WIN] PHP as an Apache module

2002-03-26 Thread Ali
hi all, i'm new to PHP and PHP installation. I've tried it before and used the cgi since I couldn't figure out the module installation. but i really want to get it working. the problem is whatever I do, I get an error message from Apache. I installed the binary version of the latest release o

[PHP-WIN] Re: [PHP-DB] how to get consistent UTC from gmmktime (w/o dst-offset) ????

2002-03-26 Thread DL Neil
BTW for all who are following this, Patrick has cleverly illustrated that most of the northern hemisphere locations where summer time is observed will 'spring forward' this weekend. Most of the southern hemisphere locations that were in summer time did their 'fall back' last weekend! NB the two us

[PHP-WIN] Cookies on Win2000 and IIS 5.0

2002-03-26 Thread Arijit Chaudhuri
Hi, PHP and MySQL runs perfectly on Win2000 with IIS 5.0. The only problem seems to be with cookies which are set only only refreshing the browser. Same codes run perfectly on my Linux partition and on Linux servers. Is any tweaking required for the php.ini file? Regards, Arijit -- PHP Windo

[PHP-WIN] how to get consistent UTC from gmmktime (w/o dst-offset) ????

2002-03-26 Thread Patrick Sibenaler
hi. i'm storing events in a mysql-db, using epoch timestamps to pinpoint the exact date/time for an event. so far, I have been using localtime, being aware that there are inconsistencies in the number of epoch-seconds, when DST flips on and off. nevertheless, that works fine as long as you

Re: [PHP-WIN] Read ASP cookie

2002-03-26 Thread George Pitcher
Yes. Cookies don't belong to the application that created them, but to the server/domain name. I use Lasso and it can create cookies and I have PHP read them, do some cool stuff and then use cookies to pass data back. George - Original Message - From: "Svensson, B.A.T. (HKG)" <[EMAIL PROT

FW: [PHP-WIN] Read ASP cookie

2002-03-26 Thread Svensson, B.A.T. (HKG)
I've taken the freedom to CC this message to php-win... >-Original Message- >From: Kriegers Horst [mailto:[EMAIL PROTECTED]] >Sent: Tuesday, March 26, 2002 4:15 PM >To: Svensson, B.A.T. (HKG) >Subject: RE: [PHP-WIN] Read ASP cookie > > >Sorry. > >Translated question: > >It is possible wi

[PHP-WIN] Lecture de cookie ASP

2002-03-26 Thread Kriegers Horst
Bonjour la liste, est-il possible de lire un cookie créé par ASP ? response.cookies("bidule")("nom") = "Tartempion" response.cookies("bidule")("prenom") = "Jules" Horst -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP-WIN] connecting to a database using ODBC

2002-03-26 Thread Svensson, B.A.T. (HKG)
You need more than "sample code" to access an AccessDB via ODBC. For example: you need to know weather a proper ODBC data source has been set up, among other things... >-Original Message- >From: Someone Somewhere [mailto:[EMAIL PROTECTED]] >Sent: Tuesday, March 26, 2002 3:10 PM >To: [EMA

Re: [PHP-WIN] connecting to a database using ODBC

2002-03-26 Thread Piotr Pluciennik
Hi, **first step: create DSN in Windows (Control Panel, ODBC) and bind it with your Access database **then in php code: $dbhandle = odbc_connect('YourDSN', '',''); if($dbhandle == 0) { die('Error connecting DB'); // or error handler } *here do your

php-windows Digest 26 Mar 2002 14:09:58 -0000 Issue 1063

2002-03-26 Thread php-windows-digest-help
php-windows Digest 26 Mar 2002 14:09:58 - Issue 1063 Topics (messages 12755 through 12758): Re: IIS + Oracle 7.* connection 12755 by: Philippe Saladin Re: random elements of an array 12756 by: Nicola Delbono 12757 by: Svensson, B.A.T. (HKG) connecting to a database

[PHP-WIN] connecting to a database using ODBC

2002-03-26 Thread Someone Somewhere
Can anyone offer some help I need to connect to an acces database, Using php on Windows with Apache. If anyone has some sample code I would greatly appreciate it I am lost about the wholeODBC thing. Cirkit _ Chat with friends on

RE: [PHP-WIN] random elements of an array

2002-03-26 Thread Svensson, B.A.T. (HKG)
Can you please explain (elaborate) what you mean? >-Original Message- >From: Nicola Delbono >Sent: Tuesday, March 26, 2002 11:12 AM >To: Svensson, B.A.T. (HKG); [EMAIL PROTECTED] >Subject: RE: [PHP-WIN] random elements of an array > > >why not shuffle() ? > >*** REPLY SEPARATOR

RE: [PHP-WIN] random elements of an array

2002-03-26 Thread Nicola Delbono
why not shuffle() ? *** REPLY SEPARATOR *** On 25/03/2002 at 11.13 Svensson, B.A.T. (HKG) wrote: >Of course the algorithm works... > >>-Original Message- >>From: Nicole Amashta >>Sent: Friday, March 22, 2002 4:36 PM >>To: [EMAIL PROTECTED] >>Subject: Re: [PHP-WIN] ran