hvordan gør jeg så den indsætter alt inhold ind i mysql db'en, i det navn man har valgt. Har nemlig 2 type="radio", og når man har markeret den ene skal den lægges ind i den tabel den hører til
har noget af koden her nedenunder
<body>
<?php
$db = mysql_connect("localhost","brows","180989");
mysql_select_db("brows",$db);
if($navn && $alder && $uddannelse && $profilbillede && profiltekst){ //mysqlquery osv her
}
?>
<form name="form1" method="post" action="<?php $_SERVER['PHP_SELF']; ?>"
Navn:<br><input class="input" type="text" name="navn"><br>
Alder:<br><input class="input" type="text" name="alder"><br>
Uddannelse:<br><input class="input" type="text" name="uddannelse"><br>
Profilbillede:<br><input type="text" class="input" name="profilbillede"><br>
Profiltekst:<br><textarea class="input" name="profiltekst"></textarea><br>
Pige:<input type="radio" name="daniel"> Dreng:<input type="radio" name="tobias"><br>
<input class="button" type="submit" value="Tilføj"> <input type="reset" class="button" value="Nulstil">
</form>
</body>