php

Discussion in 'PHP' started by shraddha@siliconinfo.com, Mar 14, 2009.

  1. #1
    If anybody knows about php that what is php? what is the it's functionality where it can be use i don't know about php i have search about php but i can't find the full detail. Thank you.:confused:
     
  2. PoPSiCLe

    PoPSiCLe Illustrious Member

    Messages:
    4,623
    Likes Received:
    725
    Best Answers:
    152
    Trophy Points:
    470
  3. ads2help

    ads2help Peon

    Messages:
    2,142
    Likes Received:
    67
    Best Answers:
    1
    Trophy Points:
    0
    #3
    It is a server-side script, unlike Javascript which is client-side.

    It processes the script on the server before displaying it.

    Follow PoPSiCLe's link above you will learn more.

    - ads2help
     
    ads2help, Mar 14, 2009 IP
  4. act_one

    act_one Well-Known Member

    Messages:
    263
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    130
    #4
    if you want to produce dynamic web pages, use script language.....

    There are many script languages, such as Asp, Php, Coldfusion, JSP......

    PHP is a one of scripting language.....

    PHP is cool because it is open source and free........
     
    act_one, Mar 14, 2009 IP
  5. mwasif

    mwasif Active Member

    Messages:
    816
    Likes Received:
    23
    Best Answers:
    1
    Trophy Points:
    70
    #5
    mwasif, Mar 14, 2009 IP
  6. Ilyes

    Ilyes Banned

    Messages:
    129
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #6
    All of us see this page, but at top left, only me see "Welcome, Ilyes", everyone see his name :)
    Open the source code of the page, you will see that your name
    <strong>Welcome, Ilyes.</strong><br />
    Code (markup):
    is in the source, but does this mean that the coder of this page writd your name on it, of course not :)
    So the server, when you enter url, send the page to your pc, after he wrote your name.
    It's like that:
    <strong>Welcome, <?php echo '$name'; ?>.</strong><br />
    PHP:
    all is html, but only the "<?php echo '$name'; ?>" part, that part will write your name to the file. That what php do and how is work.

    Unlike Javascript, it runs at the server as you see.

    Let's see Javascript: in the source code of the page, you will see "<script type="text/javascript">" and a code, that will be run in our computers, for example the code of this text area, where you can write, add colors, images ...

    Please tell me if that help :)

    Good luck !
     
    Ilyes, Mar 15, 2009 IP