php-windows Digest 11 Sep 2008 13:18:24 -0000 Issue 3519
Topics (messages 29025 through 29026):
Re: LoadModule statement can not be included
29025 by: Niel Archer
Why is the $todaydatestring data type displayed as boolean?
29026 by: Varuna Seneviratna
Administrivia:
To subscribe to the digest, e-mail:
[EMAIL PROTECTED]
To unsubscribe from the digest, e-mail:
[EMAIL PROTECTED]
To post to the list, e-mail:
[EMAIL PROTECTED]
----------------------------------------------------------------------
--- Begin Message ---
> Hello!
> I downloaded and installed apache_2.2.9 on WinXP and It worked
> fine.Then I downloaded php-5.2.6-Win32.zip and extracted it's contents to
> c:\php folder.
> I renamed the php.ini-dist to php.ini and saved it in the directory
> WINDOWS But left the php.ini-dist at php folder, copied php5ts.dll into
> c:\windows\system32 But I left the original at the php folder
> Went to httpd.conf file and added the following lines
> *AddType application/x-httpd-php .php
> AddType application/x-httpd-php-source .phps
> *
> Up to this point everything worked fine.I restated apache several
> times no error messages were displayed
>
> Then added the line
> * LoadModule php5_module "c:/php/sapi/php5apache2.dll"*
> After this line was added when apache was stopped and restarted the
> message *"operation failed"* was displayed
I hope the asterisks were for effect, not actually part of your line.
AFAIR there is no longer a 'sapi' directory, so it should be
this:
LoadModule php5_module "c:/php/php5apache2.dll"
> Any help will be grateful
>
> Thanks Varuna
>
>
> --
> Varuna Seneviratna
> No 514 Udumulla Road
> Battaramulla
> Sri Lanka
> Tel : 011-2888620
> Mobile:0715617141
--
Niel Archer
--- End Message ---
--- Begin Message ---
Why is the $todaydatestring data type displayed as boolean?
<?php
$todaydate=11092008;
echo "The data type of todaydate is
".gettype($todaydate)."</br>";
$mydatestring=settype($todaydate,"String");
echo "The data type of mydatestring is ".gettype($mydatestring);
?>
Varuna
--
Varuna Seneviratna
No 514 Udumulla Road
Battaramulla
Sri Lanka
Tel : 011-2888620
Mobile:0715617141
--- End Message ---