Dear Helper,
I am new to PHP and WAMP Server. I have installed the WAMP Server 2.1e and I have tested it with a simple PHP program <? phpinfo(); ?> but there is no response when I load it in the IE. What are the probable causes for that?
(Note: The WAMP server works fine with the osCommerce system).
Best Regards,
Pui
pui@artery.hk
<? phpinfo(); ?>
Moderator: General Moderators
-
spacebiscuit
- Forum Contributor
- Posts: 390
- Joined: Mon Mar 07, 2005 3:20 pm
Re: <? phpinfo(); ?>
A long shot but try:
It maybe that you do not have short tags enabled?
Rob.
Code: Select all
<?php
phpinfo();
?>Rob.
Re: <? phpinfo(); ?>
yeah.. you would have to enable short tags in your php.ini
Re: <? phpinfo(); ?>
Do not use short tags. It is a bad habit and may sound like a minor issue, but will cause problems in the future. Use the full <?php tags.