Im a J2EE/Java programmer and know the conventional method of setting up websites in eclipse. (dynamic web project->make server->add project to server->start server and goto browser)
I want to learn php and cant seem to get the setup right!!
ok heres what im doing
1. Downloaded fresh eclipse helios from
Eclipse Downloads
and downloaded "Eclipse for PHP Developers"
2. Fired up eclipse and made a new "PHP Project"
3. Right inside the project directory made a file "index.php" with the code
4. After saving, right click on "Index.php" and selecting "Run As->PHP Web Page"
5. I get an error in the browser "This program cannot display the webpage"
I know im missing somethings here. I tried making a server but could not as there is not one server template on this version of eclipse :S
Please help
Thanks
I want to learn php and cant seem to get the setup right!!

ok heres what im doing
1. Downloaded fresh eclipse helios from
Eclipse Downloads
and downloaded "Eclipse for PHP Developers"
2. Fired up eclipse and made a new "PHP Project"
3. Right inside the project directory made a file "index.php" with the code
Code:
<html>
<head>
<title>My First PHP Page</title>
</head>
<body>
<?php
echo "Hello World!";
?>
</body>
</html>
4. After saving, right click on "Index.php" and selecting "Run As->PHP Web Page"
5. I get an error in the browser "This program cannot display the webpage"
I know im missing somethings here. I tried making a server but could not as there is not one server template on this version of eclipse :S
Please help

Thanks