Connecting Tech Pros Worldwide Help | Site Map

New to PHP

pramod.barthwal@gmail.com
Guest
 
Posts: n/a
#1: May 2 '06
Hi

I am new to PHP. I downloaded PHP 4.3.4 version from the PHP website,
(Windows Installer). I configured IIS on the Windows XP Professional. I
installed the PHP. But when i run the sample script <? php phpinfo();
?>, IE does not display anything. Is there anything i have to do other
than simply installing PHP. Please help

Jerry Stuckle
Guest
 
Posts: n/a
#2: May 2 '06

re: New to PHP


pramod.barthwal@gmail.com wrote:[color=blue]
> Hi
>
> I am new to PHP. I downloaded PHP 4.3.4 version from the PHP website,
> (Windows Installer). I configured IIS on the Windows XP Professional. I
> installed the PHP. But when i run the sample script <? php phpinfo();
> ?>, IE does not display anything. Is there anything i have to do other
> than simply installing PHP. Please help
>[/color]

If you installed the package and IIS properly, accessing the page through IIS
should work fine.

It's impossible to tell what might be wrong without more detailed information on
what you did.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
Erwin Moller
Guest
 
Posts: n/a
#3: May 2 '06

re: New to PHP


pramod.barthwal@gmail.com wrote:
[color=blue]
> Hi
>
> I am new to PHP. I downloaded PHP 4.3.4 version from the PHP website,
> (Windows Installer). I configured IIS on the Windows XP Professional. I
> installed the PHP. But when i run the sample script <? php phpinfo();
> ?>, IE does not display anything. Is there anything i have to do other
> than simply installing PHP. Please help[/color]

Hi

<?php phpinfo(); ?>
might help instead of the
<? php phpinfo(); ?>

Note the space after the <?

Regards,
Erwin Moller
Jerry Stuckle
Guest
 
Posts: n/a
#4: May 2 '06

re: New to PHP


pramod.barthwal@gmail.com wrote:[color=blue]
> Hi
>
> I am new to PHP. I downloaded PHP 4.3.4 version from the PHP website,
> (Windows Installer). I configured IIS on the Windows XP Professional. I
> installed the PHP. But when i run the sample script <? php phpinfo();
> ?>, IE does not display anything. Is there anything i have to do other
> than simply installing PHP. Please help
>[/color]

One other thought - you might have short tags turned off in your php.ini file.

Try

<?php phpinfo(); ?>

instead.


--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
Closed Thread