actuali I do something like this this! This is page registration.php
<html>
<head>
<title>registration</title>
<body>
<form action="save.php" method="POST">
<table>
<tr>
<td width=90><span class=style12>Ime:</td><td width=150><input type="text" name="firsname" /></td></tr>
<tr><td width=90><span class=style12>Prezime:</td><td width=150><input type="text" name="lastname" /></td></tr>
<tr><td width=90><span class=style12>Mesto Stanovanja:</td><td width=150><input type="text" name="City" /></td></tr>
<tr><td width=90><span class=style12>Adresa:</td><td width=150><input type="text" name="Adress" /></td></tr>
<tr><td width=90><span class=style12>Email:</td><td width=150><input type="text" name="Email" /></td></tr>
<tr><td width=90><span class=style12>Korisnicko Ime:</td><td width=150><input type="text" name="username" /></td></tr>
<tr><td width=90><span class=style12>Lozinka:</td><td width=150><input type="password" name="password" /></td></tr>
</span>
</tr></table>
<input type="submit" value="go" name="btSubmit" />
<input type="reset" value="reset" name="btReset" />
</form>
</body>
</html>
$firsname
$lastname
$City
$Adress
$Email
$username
$password
now i got a page save.php something like this
<html>
<head>
<title>save</title>
</head>
<body>
<?php
require 'DB.php';
$db = DB::connect('mysql://root

localhost/test');
if(DB::isError($db)) {die("Can't connect: " .$db->getmessage());
/*
*
*$q = $db->query("CREATE TABLE registration(
*F_name INT,
*L_name INT,
*C_ity VARCHAR(255),
*Aders_s INT,
*Emai_l INT,
*user_name INT,
*pass_word INT)");
*/
$q=$db->query(INSERT INTO regitracija
Values( ??????????????????????????????????? )");
?>
</body>
</html>
HOW CAN I LINK ANY OF THE VARIABLE FROM PAGE registration.php in to PAGE save.php to INSERT INTO