1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

difference plz?

Discussion in 'PHP' started by databaseking, Aug 19, 2007.

  1. #1
    i want to know how pho is better in programming than asp?please reply
     
    databaseking, Aug 19, 2007 IP
  2. nico_swd

    nico_swd Prominent Member

    Messages:
    4,153
    Likes Received:
    344
    Best Answers:
    18
    Trophy Points:
    375
    #2
    Google "PHP vs ASP".


    This has been discussed so many times.
     
    nico_swd, Aug 19, 2007 IP
  3. MrX

    MrX Well-Known Member

    Messages:
    1,563
    Likes Received:
    77
    Best Answers:
    0
    Trophy Points:
    140
    #3
    If you don't know either and wanna start, learn PHP. If you already know one, just stick to that unless you need to learn the other.

    One bonus of PHP is its syntactical similarity to C, which is nice if you ever decide to do desktop app programming.
     
    MrX, Aug 19, 2007 IP
  4. ewriter

    ewriter Banned

    Messages:
    590
    Likes Received:
    9
    Best Answers:
    0
    Trophy Points:
    0
    #4
    If you know c you can easily learn php, advantage is that its free
     
    ewriter, Aug 19, 2007 IP
  5. Matts

    Matts Berserker

    Messages:
    195
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    108
    #5
    And php is very syntax forgiving. You don't spend hours deciding if you should write:
    include 'file.php';
    include "file.php";
    include('file.php');
    include ('file.php');
    include("file.php");

    They all work just fine.

    And for the most part you don't need to worry about data type conversion, it's done for you magically, a number is a number when you need it to be or a string when you want to concatenate it or substring it, etc.
     
    Matts, Aug 19, 2007 IP