Closed Thread
Page 1 of 2 12 LastLast
Results 1 to 10 of 12

Thread: Basics Of PHP

  1. #1
    sn17 Guest

    Basics Of PHP

    I dont know 1 bit about this thing. Could somebody tell me the basics of this thing?

  2. CODECALL Circuit advertisement

     
  3. #2
    chaganlal1 Guest
    Look at some tutorials there are a great amount of them all over the internet, its as simple as going to google and searching for "PHP Tutorials" or if you have the funds go to amazon and order a few PHP books.

  4. #3
    Blaze's Avatar
    Blaze is offline Programmer
    Join Date
    Jun 2006
    Posts
    117
    Rep Power
    0
    What do you want to know? It is just like any other scripting language and is a whole books worth of details. Anything specific like what it does or what its used for?

  5. #4
    sn17 Guest
    I wanna know the basic outline for this thing.

  6. #5
    getlies is offline Learning Programmer
    Join Date
    Aug 2006
    Posts
    55
    Rep Power
    0
    I'm also interested in learning the basics.
    Can anyone recommend a good site to learn it step-by-step?


    Many thanks

  7. #6
    Join Date
    Jul 2006
    Location
    Amherst, New York, United States
    Posts
    6,277
    Blog Entries
    26
    Rep Power
    20
    erm, PHP (hyper text pre-processor) is a server sided web development scripting language. Its pretty powerful and probabley the most popular. Being that it is server sided you must have Apache or some other hosting utility to view the scripts. It has built in functions so it can interact with databases (mysql, ect...) hm what else...?

    you start every php script with <?php and close every php script with ?>

    you can find every php function at www.php.net and if you buy any book this is the first thing you will do...

    Code:
    <?php
    echo "Hello World!";
    ?>
    if u notice the begining and end are the same as i mentioned above. the echo statement is a means of displaying information on screen, the string is surrounded by quotes and every line (for the most part) is ended with a semi colon....i think thats the basics

  8. #7
    getlies is offline Learning Programmer
    Join Date
    Aug 2006
    Posts
    55
    Rep Power
    0
    thanks for the post
    the site is great

  9. #8
    DevilsCharm's Avatar
    DevilsCharm is offline Programming God
    Join Date
    Jul 2006
    Posts
    884
    Rep Power
    0
    The thing that discourages most people with languages is the complicated syntax. There's lots of ; , > ? ++ stuff, but it's not so (that much) with BASIC. You should start with that.

  10. #9
    Sionofdarkness is offline Programming Expert
    Join Date
    Jul 2006
    Posts
    383
    Rep Power
    0
    There's still some of it in BASIC, at least, when you get to the advanced levels of it.

  11. #10
    Thomas is offline Newbie
    Join Date
    Sep 2006
    Posts
    15
    Rep Power
    0
    www.php.net is a great site for learning PHP as Sidewinder mentioned. I also like to visit http://www.w3schools.com/

    They also have great information on PHP and a lot of other web development resources.

    http://www.w3schools.com/php/ for learning PHP.

Closed Thread
Page 1 of 2 12 LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Help with basics
    By isuru in forum Python
    Replies: 5
    Last Post: 05-06-2010, 06:30 PM
  2. The basics in C++
    By FrozenSnake in forum C and C++
    Replies: 3
    Last Post: 02-16-2009, 07:10 AM
  3. Do i have the basics down.
    By Prof_Oak in forum Website Design
    Replies: 2
    Last Post: 04-03-2008, 02:53 PM
  4. C basics.
    By justin1993 in forum C and C++
    Replies: 4
    Last Post: 07-24-2007, 05:56 AM
  5. C++ Basics
    By Deathcry in forum C and C++
    Replies: 5
    Last Post: 06-13-2007, 02:04 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts