954,585 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

Hi.......Help me get started with PHP

Guys, i have installed PHP 5 on my windows system, i am able to browse to info.php which shows a listing, but if i create another simple page with a echo statement then i and not able to browse that page. i get the HTTP 500 internal server error. i have both the pages in the same folder.


hepl please

ramanand
Newbie Poster
5 posts since Apr 2009
Reputation Points: 10
Solved Threads: 0
 

make a folder in www directory and put your page in it and try to browse.

BzzBee
Posting Whiz
327 posts since Apr 2009
Reputation Points: 16
Solved Threads: 48
 

tell me what happened so i can better guide you.

BzzBee
Posting Whiz
327 posts since Apr 2009
Reputation Points: 16
Solved Threads: 48
 

you can make a simple echo file with the name of "index.php" in you folder. so when you will click on your folder listed on first page you will be redirected to index.php page. but if you have file with different name then you have to go that page manually. or type your file name in address bar e.g
http://localhost/mytestfolder/testfile.php

if if your file name is index.php then its enough to right

http://localhost/mytestfolder/

BzzBee
Posting Whiz
327 posts since Apr 2009
Reputation Points: 16
Solved Threads: 48
 

Tizag has some realy great beginer tutorials on PHP (They helped me learn in about 1 month)
Tizag PHP Tutorials
Enjoy

samarudge
Posting Whiz
359 posts since May 2008
Reputation Points: 26
Solved Threads: 31
 

hi,

I have create a new folder for every page? wont it be possible to browse the pages from the single folder.

ramanand
Newbie Poster
5 posts since Apr 2009
Reputation Points: 10
Solved Threads: 0
 

No, you don't have to create a new folder for every page. However, in order for php code to be executed, you not only need to make sure to use the <?php opening and ?> closing tags, but also make sure that the directory is in fact configured as a DocumentRoot in apache (assuming you use apache).
Also you cannot "browse" to it using the filesystem, but need to type in the valid URL for the page, which most likely will be something like this: http://localhost//filename.php

It might help if you tell us the directory structure as well as how you configured the DocumentRoot.

Hope this helps...

kokoro90
Light Poster
25 posts since Feb 2009
Reputation Points: 10
Solved Threads: 9
 

Actually in a purely PHP file, the closing tag ?> should be excluded.

It is necessary when you are jumping in an out of php control structures that are mixed with html or some other kind of output.

mschroeder
Work Harder
Team Colleague
666 posts since Jul 2008
Reputation Points: 279
Solved Threads: 131
 

If you are working on one website, just one folder will be enough for that website, put all the php, html files and folders regarding that website in that folder.
Create new folder for new website and its related material.

emarshah
Junior Poster in Training
61 posts since Jan 2008
Reputation Points: 10
Solved Threads: 6
 

hi,

i have put the php.ini in windows folder.
and have set the doc_root to C:Inetpub/wwwroot. this is where i have the two scripts. I have also configured the IIS virtual directory to C:Inetpub/wwwroot. i am able to open a page which has just phpinfo(). the other page has one echo statement and the phpinfo(), but i am not able to browse it. i try to browse it by using the ip address.

ramanand
Newbie Poster
5 posts since Apr 2009
Reputation Points: 10
Solved Threads: 0
 

Can you post the complete php file that gives you a 500 error?

kokoro90
Light Poster
25 posts since Feb 2009
Reputation Points: 10
Solved Threads: 9
 

Thanks for all the help... i have been able to browse both the pages.

ramanand
Newbie Poster
5 posts since Apr 2009
Reputation Points: 10
Solved Threads: 0
 

This question has already been solved

Post: Markdown Syntax: Formatting Help
You