Hello Guys Still I am new to php.What is different between PHP once it configure in apache server. There are two type 1Installing as an Apache module 2Installing as a CGI binary What different between these two? Thank you
Have a look at this: http://www.htaccesselite.com/htacce...hp-cgi-and-php-as-an-apache-module-vt106.html
Hi guys Thank you nico.for you fast reply I already installed PHP,but i dont know it,s CGI or other,so how i get that. Thank you
Check your httpd.conf file, if PHP is running under CGI, there will be line similar to this: Action application/x-httpd-php "c:/php5/php-cgi.exe" Code (markup): If it is running as a module, there will be a line similar to this: LoadModule php5_module "c:/php5/php5apache2.dll" Code (markup):
You can create a php page with this function in as well which is very handy test.php <?php phpinfo(); ?> Navigate to test.php and see what you see