please can someone explain how php works

May 11, 2009 10:05pm CST
i know i would learn how php works, but i havent taken the time to learn it, please how does it work. does it use tags like html and is it a server side scripting language??
4 responses
• India
13 May 09
Am a php developer and yes obsolutely it is the server side scripting language
13 May 09
thansk and would start looking into learning iit a diffult language to learn or is it like javascript
@fwangaa (3057)
• China
14 May 09
if you know java , you will easily to manage php. but jave is not very easy. if you want manage it very well , you should know c language. then you should know c++, but if you don't know either of them. you also can know php. you can find the course from internet. there are a lot of course in internet. may be you can use php to buit a server in your computer. and can buit a web from your server. you can easily to realize running in your computer use php.
15 May 09
php is a server side language which allows you to create web pages with dynamic content, interact with databases and as php basically renders all the dynamic content as html at the user end it is better for using on pages than say javascript when it comes to getting content on search engines. The best thing you can do is find a website which guides you through the basics of php and then build up your knowledge on a need to go basis.
16 May 09
thanks mate, just started to do that. Great..
@willjosh (50)
• Philippines
18 May 09
PHP is a server side scripting language, which could be embedded in html to produce dynamic content. It is like javascript, though it has more advanced functions which javascript cannot achieve, and as I said, php is a server side scripting language. It means that after the server interprets the php code, the code will not appear in the source of the web page; whereas javascript is a client side scripting language, so the code appears in the source of the web page, so that the browser can execute it. You can find php tutorials here at w3schools: http://www.w3schools.com/PHP/DEfaULT.asP
@veedhya (72)
• Mauritius
13 Jun 09
yeah it is a web language..It is good to note that when u write php codes, it will be executed at the server...the server will hand over the php pages to the application server which will execute the codes and returns the results to the web browser.....