hi guys
I have recently setup apache server on my pc with all necessary modules like mysql, php4.1 etc.
Now i want to load php scripts on my apache server.
Can anybody guide me step by step how to setup scripts like contact form etc in apache server (I want to create online database).
I am novice in php.
Advertisements. Register and be a member of the community to get rid of them.
hmm there is nothing to setup basically...
to check if your script is running properly or not, create a file in htdocs folder with name phpinfo.php (or any name u want)
put this code in that
Code:
<?php
phpinfo();
?>
so if you find php info when you visit the page, that means PHP is installed and you can play with it...
Deep
__________________
- Deep Ganatra -
www.whoisdeep.com
www.twitter.com/DeepXP/
I don't know what you are having problems with, just put php files in root and they will be executed upon access (since you have php installed). If you need scripts just go to hotscripts.com and find any form to mail script to create a contact form.
hmm there is nothing to setup basically...
to check if your script is running properly or not, create a file in htdocs folder with name phpinfo.php (or any name u want)
put this code in that
Code:
<?php
phpinfo();
?>
so if you find php info when you visit the page, that means PHP is installed and you can play with it...
Deep
And to execute it ... Type
localhost/phpinfo.php
In your browser and make sure that apache is running...