How can i complete this code:

<?

$HostName="localhost";
$UserName="prokhaled";
$DBName="test";
$Password="";

$Connect =mysql_connect($HostName,$UserName,$Password);
$Select =mysql_select_db($DBName,$Connect);

?>

I want to create new table it's name (Members) this table contain this fields (UserName,Age,Password)

And also How can I add new records in this Table or this fields.