| | as simple as I can put it: Browsers don't do anything with PHP. browsers just handle things like html,xhtml,javascript,css, and can throw various files to plugins such as flash, adobe reader, and java.
PHP is a programming language. You can create a PHP script for a web server (like Apache usually). Apache using a PHP plugin will read and execute the PHP script. The PHP script will output html. Apache will then send that html over the internet to the requesting computer/browser. So PHP is completely "Server side". Your browser couldn't actually do anything with a php script other than show the program's text.
|
|