tags:

views:

25

answers:

2

Hi i'm a beginner with php and i'm wondering how can i use this using the xampp server? would appreciate your ideas.

Thanks

+1  A: 

link : This tutorial will teach you how to setup and manage a local webserver on your PC using XAMPP

http://www.thaslayer.com/2008/01/08/easily-create-a-local-webserver-on-your-own-pc/

Haim Evgi
@Haim Evgi:i already did installed this. it's actually running. i just want to know how to use now the php with this xampp.
tintincute
+2  A: 

its very easy just run the setup and and type u r script in notepad or any other editor and save that with .php extension in C:\xampp\htdocs then run the script in browser by typing

"http://localhost/file_name.php" in the browser address

Ricky Dang
@Gitesh Dang: do i need to save it under htdocs?
tintincute
All of your PHP must go inside the htdocs folder. For example, you could have a folder within the htdocs folder called Test, and with in that folder a file called test.php. To view this page in your browser, would go to to the address: http://localhost/Test/test.php
Jeff
@Jeff: Thanks ;-) getting clear to me
tintincute
@tintincute: Ya it is necessary to save your php file in htdocs but you can also configure the settings....
Ricky Dang