I did run IIS but dident work so fine so i change into Apache/1.3.27 and now it works with miner problems...
when i submit the form i get this response
Forbidden
You don't have permission to access /< on this server.
--------------------------------------------------------------------------------
Apache/1.3.27 Server at quizqpdc1.Quizq.net Port 80
I Have typet in the right User and Password but it dosent work any ides.
<html>
<B>
<BODY BGCOLOR="#50538D" TOPMARGIN=0 LEFTMARGIN=0 link=black>
<FONT COLOR='black'>Welcome to members registration</FONT></B>
<body>
<?php
$submit=$POST['submit'];
$firstname=$POST['firstname'];
$lastname=$POST['lastname'];
$email= $POST['email'];
if ($submit){
// process form
$con=mysql_connect("localhost","LHA","razor") or die ("not connected");
mysql_select_db("Flameline",$con);
$query="INSERT INTO table_name(fornamn,efternamn,epost) values ('$firstname', '$lastname', '$email')";
$result = mysql_query($query);
echo "First name: $firstname Last name:$lastname e-mail:$email";
}
else{
// display form
?>
<form method="post" action="<?php echo $PHP_SELF?>">
<B>First name :</B><FONT COLOR='#50538D'></FONT><input type="Text" name="firstname"><br>
<B>Last name :</B><FONT COLOR='#50538D'>¨.</FONT><input type="Text" name="lastname">
<br><BR>
<B>E-mail :</B><FONT COLOR='#50538D'>_____.</FONT><input type="Text" name="email">
<FONT COLOR='#50538D'>___</FONT><input type="Submit" name="submit" value="Submit Registration">
</form>
<?php
} // end if
?>
</body>
</html>