|
|||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Our Main Sponsor - FreelancerStore.com | |
|
|
![]() |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
So I've noticed that there are a lot of pages that end in php. What exactly is php and how do I use it. What are the advantages of using this instead of another language? And where do I learn more about this?
|
| Sponsored Links |
|
|||
|
PHP which means Php - Hypertext - Preprocessor
is a server side language and can actually THINK do calculations and a hell of alot more. |
|
|||
|
*roll eyes*
Lol, Okay in html/CSS you cant do simple things like: 1+1=2 and have it work it out but in php you can do something like: $total = 1+1; echo $total (will show 2) and thats the simple stuff... HTML/CSS/XHTML is ONLY a display/Markup lanagage which controls the look at layout, all the server does to a html file is simple send it to the browser. if the server reconises it as PHP it will put it through the PHP parser which works it all out and if you like it creates the final set of html and THEN apache sends it to the browser... :D |