--- In [email protected], Mahesh Patil <linuxmah...@...> wrote: > > Hi group how to run php, xml file through apache plz help its urgent > > > Thanks group > > > > Add more friends to your messenger and enjoy! Go to > http://messenger.yahoo.com/invite/ > > [Non-text portions of this message have been removed] >
Hi Mahesh, If u have installed php then copy the libphp.so file from installed path (or use windows search engine for libphp.so) and copy to your apache home folder (C:\Program Files\Apache Software Foundation\ApacheX.X\modules\) Open your apacheconf file with notepad ( use notepad++) search for the LoadModule line and Append the following LoadModule php_module modules/libphp.so AddType Application/x-httpd-php .php Now for testing create one index.php file in the document root and insert the following <html> <head> <title>PHP Test</title> </head> <body> <?php phpinfo(); ?> </body> </html> save & restart Apache For different steps refer the following http://www.netbeans.org/kb/docs/php/configure-php-environment-windows.html If you want for testing purpose then use XAMPP http://www.apachefriends.org/en/xampp-windows.html For xml, In the context of a web server, there's no such thing as "understanding" an XML file. Could you please be a bit more specific about what you're trying to achieve If any querry feel free to call Regards. B.Sadhiq

