phpeclipse - how execute php file in a browser with eclipse -


i need execute php file in web browser. use eclipse configured php. code simply:

<?php echo "<a href='hi'>hello</a>"; 

i start "php web application" obtain is:

http://it.tinypic.com/r/24pjwq9/8

"object don't find".

anyone can me?

you using wrong url.

for moment if need test script it's not hard new php's inbuilt web server

  1. goto folder have php file command prompt.

  2. type php -s localhost:8000 , start php web server (as of php 5.4.0, cli sapi provides built-in web server.)

  3. lets file name index.php. goto web browser , type http://localhost:8000/index.php


Comments

Popular posts from this blog

c++ - No viable overloaded operator for references a map -

java - Custom OutputStreamAppender not run: LOGBACK: No context given for <MYAPPENDER> -

java - Cannot secure connection using TLS -