[PHP-WIN] Re: Double quotes question

2002-06-03 Thread Tomator
"Clay Culver" <[EMAIL PROTECTED]> wrote: > > I have a script that lists the files in a directory, and > create links accordingly but if the files contain spaces then the link > won't come out correctly. I am fairly new to PHP and have no real idea > on how I can get it to make links sh

php-windows Digest 4 Jun 2002 06:24:35 -0000 Issue 1174

2002-06-03 Thread php-windows-digest-help
php-windows Digest 4 Jun 2002 06:24:35 - Issue 1174 Topics (messages 14051 through 14065): Double quotes question 14051 by: Clay Culver 14054 by: Michael Davey notice:undefined variable 14052 by: Marius Venter 14053 by: Michael Davey 14057 by: Dash M

[PHP-WIN] Re: ddsfdsfdsf

2002-06-03 Thread Tomator
User "Tiago SimõEs" <[EMAIL PROTECTED]> wrote: > xdsfdsfsdfdsf > > Great news! I'm impressed. -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-WIN] parms are ignored

2002-06-03 Thread Jason Soza
Most likely your globals are turned off in php.ini. Try this: And see if that returns the value for you. Jason Soza - Original Message - From: "Diego Prusky" <[EMAIL PROTECTED]> Date: Monday, June 3, 2002 4:07 pm Subject: [PHP-WIN] parms are ignored > > > Hello, > > I recently in

[PHP-WIN] Re: parms are ignored

2002-06-03 Thread Michael Davey
With the URL you have given: > http://myweb/cgi/login.php?login=rene Should have code looking like this... echo"value of var = $login"; Mikey -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-WIN] parms are ignored

2002-06-03 Thread Diego Prusky
Hello, I recently installed PHP on W2K Server with IIS 5.0. I have the ISAPI filter running fine, but when i send a parameter such as http://myweb/cgi/login.php?login=rene The value 'rene' is not showing. The code I'm using: http://www.php.net/) To unsubscribe, visit: http://www.php.net/uns

[PHP-WIN] Re: phpMyAdmin error...

2002-06-03 Thread Webmaster
You can try to download the newest version, 4.2.0. Returning headers usually means that there are too many spaces (blank lines) at the php page... "Mircea Goia" <[EMAIL PROTECTED]> schreef in bericht [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hi, > > I have a problem withg the subject. > I g

RE: [PHP-WIN] htaccess and PHP in general

2002-06-03 Thread Scott Hurring
It was just the simplest/easiest/fastest way to get what i needed to do, done. All that was needed was support for name/password, nothing else... and apache's .htpasswd is really (IMO) ideal for such a simple user validation. i didnt want to go to the trouble of including support for sessions a

[PHP-WIN] phpMyAdmin error...

2002-06-03 Thread Mircea Goia
Hi, I have a problem withg the subject. I get first page (index.php) running correctly (I can see the left menu which shows me the databases and the right page which shows the Welcome message). But when I'm trying to go to another page (let's say I want to switch to a specific database from my s

Re: [PHP-WIN] How do I get PHP 4.1.2 to work with Apache 2.0.36 on win32?

2002-06-03 Thread Stuart Dallas
On Monday, June 3, 2002 at 2:13:03 PM, you wrote: > I'm having a little trouble setting up PHP 4.1.2 to run on my Win32 > Apache 2.0.36 installation. Apache is working flawlessly ortherwise, > but If I try and add/uncomment the "LoadModule" line for > php4apache.dll then Apache doesn't even loa

RE: [PHP-WIN] notice:undefined variable

2002-06-03 Thread Dash McElroy
I found I was getting these because I was not putting quotes around certain functions. For example: $_GET[blah] will tell you that "blah" was an undefined variable. If you do this: $_GET['blah'] (like php.net says...silly me) it works just fine. Other things, like date(M-D-Y) will do the same th

RE: [PHP-WIN] How do I get PHP 4.1.2 to work with Apache 2.0.36 on win32?

2002-06-03 Thread Dash McElroy
Use 4.2.1 or newer. 4.1.2 doesn't have support for apache 2. Use this line in httpd.conf: LoadModule php4_module c:/php/experimental/apache2filter.dll Change to your path, obviously. -Dash -Original Message- From: Dr. D. Wagner [mailto:[EMAIL PROTECTED]] Sent: Monday, June 03, 2002

[PHP-WIN] ddsfdsfdsf

2002-06-03 Thread Tiago Simões
xdsfdsfsdfdsf -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-WIN] Re: Double quotes question

2002-06-03 Thread Michael Davey
> I did try going else { print "$file />\n"; } but all I get is PHP errors doing this until the double quote > is removed, any help in this would be great. This would work: print ""; and so would: print ""; or even: print << END; But you really should have checked the manual fir

[PHP-WIN] Re: notice:undefined variable

2002-06-03 Thread Michael Davey
Send your source code! "Marius Venter" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I installed PHP 4.1 on NT 4 with IIS 4. My client getting many of these > error messages when he runs his html form: > > > Notice: Undefined variable: background in > D:\inet

[PHP-WIN] notice:undefined variable

2002-06-03 Thread Marius Venter
I installed PHP 4.1 on NT 4 with IIS 4. My client getting many of these error messages when he runs his html form: Notice: Undefined variable: background in D:\inetpub\reservationhouse\formmail.php on line 183 The form was not submitted for the following reasons: I NEED VALID RECIPIENT EMAIL AD

[PHP-WIN] Double quotes question

2002-06-03 Thread Clay Culver
Hi, I have a script that lists the files in a directory, and create links accordingly but if the files contain spaces then the link won't come out correctly. I am fairly new to PHP and have no real idea on how I can get it to make links show as currently it will put links like whic

php-windows Digest 3 Jun 2002 13:14:12 -0000 Issue 1173

2002-06-03 Thread php-windows-digest-help
php-windows Digest 3 Jun 2002 13:14:12 - Issue 1173 Topics (messages 14043 through 14050): Re: a problem. 14043 by: Michael Davey 14046 by: Peter crash 14044 by: Aleborg Loading extensions... 14045 by: Chris Knipe 14047 by: Peter 14048 by: C

[PHP-WIN] How do I get PHP 4.1.2 to work with Apache 2.0.36 on win32?

2002-06-03 Thread Dr. D. Wagner
Howzit, I'm having a little trouble setting up PHP 4.1.2 to run on my Win32 Apache 2.0.36 installation. Apache is working flawlessly ortherwise, but If I try and add/uncomment the "LoadModule" line for php4apache.dll then Apache doesn't even load, just exits. I've tried on both Win98SE and W