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.
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
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........
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 !