Store your website files in htdoc
If you do not know php/html, than there are several programs out there that will help you design your website in a format similar to photoshop.
If i may recommend a program for Beginners i'd have to say Web Easy, Its pretty much self explainatory from there and you can create the website just like you would drawing a picture on the computer.
Then save it and place it in you htdocs folder in Xamppp
Start Apache and open Local Host
Check ur website.
On a blank Page
add the register page coding along with
the Server Config
Code:
<?php
$dbuser = "USERNAME";
$dbpass = "PASSWORD";
$dbname = "DATABASE";
$dbhost = "IP ADDRESS";
$con = mysql_connect($dbhost, $dbuser, $dbpass);
?>