How i can test a w开发者_Python百科eb server that is working fine ? i have the apache to hosting my php code. i would like to test if my server is good in order to publish my php web services.
Thanks for your answer.
I would try to create a page with the following code:
<?php
phpinfo();
?>
That should give you a test page with all the info related to php. Not only will it show you that php is working it'll give you a list of options you've selected(in case you missed anything).
精彩评论