Nadot [mailto:[EMAIL PROTECTED]]
Sent: 22-Mar-02 08:01
To: [EMAIL PROTECTED]
Subject: [PHP-WIN] php3 + Apache + Windows 2000 Pro
Quelqu'un pourrait-il me dire les directives à insérer
dans le fichier de config de Apache et dans les fichiers
truc muche de W2k pour intaller php3 ?
J'ai pass
Quelqu'un pourrait-il me dire les directives à insérer
dans le fichier de config de Apache et dans les fichiers
truc muche de W2k pour intaller php3 ?
J'ai passé quelques heures à chercher dans la doc de php
et dans les FAQ mais je n'ai rien trouvé de concret et d'utilisable.
Merci
--
Robert Na
this is required... but I think it is and anyways I have it.
-Original Message-
From: Micah Freedman [mailto:[EMAIL PROTECTED]]
Sent: Saturday, March 09, 2002 9:34 AM
To: [EMAIL PROTECTED]
Subject: [PHP-WIN] .php3 extension
Hi,
Can anyone tell me how to set things up so that files wit
Hi,
Can anyone tell me how to set things up so that files with the
.php3 extension will be processed by the PHP 4 engine. (I'm
running IIS under Win2K, there's a C:/PHP/ folder with only a few
items in it one of which is php.exe. I don't see any configuration
files. Obviously, I don't know much a
ScriptAlias /php/ "c:/php/"
> > AddType application/x-httpd-php .php3
> > Action application/x-httpd-php "/php/php.exe"
> >
> > in your apache conf file.
> >
> > Ross
> >
> > -Original Message-
> > F
all learnt once. :)
Ross
-Original Message-
From: Todd Williamsen [mailto:[EMAIL PROTECTED]]
Sent: 23 October 2001 20:16
To: [EMAIL PROTECTED]
Subject: Re: [PHP-WIN] .php3 extension not being executed!
Ross,
Thanks... but which file is that?
I am trying to ween myself off of MS stuff, so be pati
; -Original Message-
> From: Todd Williamsen [mailto:[EMAIL PROTECTED]]
> Sent: 23 October 2001 20:08
> To: [EMAIL PROTECTED]
> Subject: [PHP-WIN] .php3 extension not being executed!
>
>
> What could be causing this?
>
> I am using Win2k with Apache
>
> than
onf file.
Ross
-Original Message-
From: Todd Williamsen [mailto:[EMAIL PROTECTED]]
Sent: 23 October 2001 20:08
To: [EMAIL PROTECTED]
Subject: [PHP-WIN] .php3 extension not being executed!
What could be causing this?
I am using Win2k with Apache
thanks
--
PHP Windows Mailing List (http:
What could be causing this?
I am using Win2k with Apache
thanks
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]
Howdy
I would say, beside the extra features and modules, the main
differences between PHP3 and PHP4 are speed and native session
support.
With PHP3 you have to use something like PHPLIB to provide
session handling, while with PHP4, these features are built in.
If you upload PHP4 (usually .p
Hi I'm doing a University project using PHP as the server side technology.
I want to publish this using my ISP's server. They say they support PHP3.
I'm currently learning PHP4. Is there a large difference between PHP3 and
PHP4. That is if I upload my PHP4 files will their server recognise them
DE BLOCK--
-Original Message-
From: Kim Littell [mailto:[EMAIL PROTECTED]]
Sent: Friday, 18 May 2001 05:40
To: [EMAIL PROTECTED]
Subject: [PHP-WIN] PHP3 with mySQL
I'm in a tricky situation with a client and I was hoping to get some advice.
Someone (old provider) wrote a php3 script t
I'm in a tricky situation with a client and I was hoping to get some advice.
Someone (old provider) wrote a php3 script that creates a mySQL database
from a text file for access over the web. The problem is my client has
switched providers and has decided to run on an NT server. Their new
provid
not need to restart the server after these changes.
- Frank
> You add it in the php.ini file. Look for the AddType section and add php3 to
> the end of the line..
>
> rwj
> - Original Message -
> From: "Manesh" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECT
You add it in the php.ini file. Look for the AddType section and add php3 to
the end of the line..
rwj
- Original Message -
From: "Manesh" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, April 19, 2001 7:23 AM
Subject: RE: [PHP-WIN] Php3
> where do
where do i add that. I am IIS5 (i think, i have win2k)
-Original Message-
From: rjones [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 18, 2001 11:42 PM
To: [EMAIL PROTECTED]
Subject: Re: [PHP-WIN] Php3
Manesh,
Are you trying to run php version 3 or scripts with a php3 extension?
If
y, April 18, 2001 9:33 PM
Subject: [PHP-WIN] Php3
> i have php4 and when i use .php its works, but php3 don't work
>
> plz help!
>
> --
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL
i have php4 and when i use .php its works, but php3 don't work
plz help!
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]
I'm a programmer and develop. under Visual Studio and it's the first time I
use PHP.
I want to install PHP for windows and create new tools.
I look for a PHP3(or PHP4) executable and his associated source code for a
Visual Studio environment.
Thanks everybody.
--
PHP Windows Mailing List (
Try this:
$var_1 = "one";
$var_2 = "two";
$var_3 = "three";
for($i=1; $i<4; $i++)
{
echo"$i. ";
echo ${var_ . $i};
echo" ";
}
- Original Message -
From: "Mize, Robert" <[EMAIL PROTECTED]>
To: <[EMAIL PROTEC
Is there any particular reason you don't just use an array for this?
--
phill
""Mize, Robert"" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> If I have a set of variables named say:
> $var_1
> $var_2
> $var_3
>
> and I want to use a for loop to do something wi
If I have a set of variables named say:
$var_1
$var_2
$var_3
and I want to use a for loop to do something with the variables like:
for($i=1; $i<4; $i++){
echo $var_$i;
}
how do I do this so that $var_$i is interpreted as the variable ($var_1
ect)?
Thanks,
rob.
--
PHP Windows Mailing List (
22 matches
Mail list logo