New to PHP

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • pramod.barthwal@gmail.com

    New to PHP

    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

    #2
    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@attgl obal.net
    =============== ===

    Comment

    • Erwin Moller

      #3
      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

      Comment

      • Jerry Stuckle

        #4
        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@attgl obal.net
        =============== ===

        Comment

        Working...