Re: [PHP] new to php, need help..

2003-02-20 Thread Chris Cook
Try naming the file with a .php extension. It is also possible your server does not support php. Good luck, Chris From: "Jonathan" <[EMAIL PROTECTED]> Reply-To: "Jonathan" <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: [PHP] new to php, need help.. Date: Thu

[PHP] new to php, need help..

2003-02-19 Thread Jonathan
hi all, i've only begun learning php around 1 week ago, i'm having trouble with this code, Untitled Document "; echo "$subject[1]"; } else { $subject[0] = "Enter Subject A"; $subject[1] = "Enter Subject B"; } ?> i got the body code from www.linuxguruz.org but i can't seem to get m

Re: [PHP] New to PHP Need Help

2002-04-04 Thread Philip Olson
Firstly, cross-posting like this is a huge no-no, please don't do that again. > When the script runs it displays Array. Printing arrays directly will do that. Logically speaking, how do you expect PHP to know what value to get here? You are SELECTing many. > I am running WIN2K and IIS 5

Re: [PHP] New to PHP Need Help

2002-04-04 Thread Hiroshi Ayukawa
Hello, The result $Location_info is an array.So you've got the answer 'Array'. Consider that you requested MySQL to fetch several columns through SQL "Select * from...". So the result was an array. You can get the content of the result like $Location_info[0],$Location_ info[2],and so on. Hir

RE: [PHP] New to PHP Need Help

2002-04-04 Thread Rick Emery
ay, April 04, 2002 9:29 AM To: [EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: [PHP] New to PHP Need Help I am trying to define variables through an anchor tag to retrive data from MySQL, When the script runs it displays Array. I am running WIN2K and IIS 5 echo "Camp S

[PHP] New to PHP Need Help

2002-04-04 Thread Jason Tobias
I am trying to define variables through an anchor tag to retrive data from MySQL, When the script runs it displays Array. I am running WIN2K and IIS 5 echo "Camp Street Cafe"; Here is the script that is called. $Location_Info"; ?> -- PHP General Mailing List (http://www.php.net/) To u

Re: [PHP] New to PHP, need help.

2002-03-07 Thread Matt Drake
Michele, Possible a dumb question, but does the machine you are running it on have PHP installed and configured to work with the server software? If so, did you name the file correctly? It may need to be called "page.php" rather than "page.html"... M On Thu, 7 Mar 2002, Michele wrote: > I cur

[PHP] New to PHP, need help.

2002-03-07 Thread Michele
I currently working with some free source from CyberGl and am having a problem with the membership module. I've inserted the php into the beginning of the page but when I go to test the page, nothing appears. I don't get a 404 error or any error, the page just doesn't display. Any ideas? Than