Formulier met dropdown
Marly - 10/10/2005 21:00
HTML interesse
Hallo,
<td width="30%">Voertuig:</td>
<td width="20%">
<select name="select">
<option>Auto</option>
<option>Boot</option>
<option>Motor</option>
<option>Scooter</option>
<option>Overig</option>
</select>
</td>
< td width= "30%" > Voertuig:</ td>
< td width= "20%" >
< select name= "select" >
< option> Auto</ option>
< option> Boot</ option>
< option> Motor</ option>
< option> Scooter</ option>
< option> Overig</ option>
</ select>
</ td>
Dat wil ik gebruiken.
Dan moet je iets selecteren en dan moet die optie in de database komen.
Hoe kan ik dat maken?
6 antwoorden
Gesponsorde links
Rens - 10/10/2005 21:05
Crew algemeen
Je moet je option wel een value="waarde" meegeven.
Dus:
<option value="auto">Auto</option>
< option value= "auto" > Auto</ option>
En dan kun je de waarde vervolgens ophalen met $_POST['select'].
Marly - 10/10/2005 21:11
HTML interesse
Is daar misschien grotere uitleg of tutorial van?
Ik begrijp het niet...
Marly - 10/10/2005 21:23
HTML interesse
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Klanten Toevoegen</title>
</head>
<body>
<?php
include("includes/config.php");
if(isset($_POST['verzenden']))
{
$voornaam = addslashes($_POST['voornaam']);
$achternaam = addslashes($_POST['achternaam']);
$adres = addslashes($_POST['adres']);
$postcode = addslashes($_POST['postcode']);
$woonplaats = addslashes($_POST['woonplaats']);
$telefoonnummer = addslashes($_POST['telefoonnummer']);
$mobielnummer = addslashes($_POST['mobielnummer']);
$telefoonwerk = addslashes($_POST['telefoonwerk']);
$oliefilter = addslashes($_POST['oliefilter']);
$luchtfilter = addslashes($_POST['luchtfilter']);
$brandstoffilter = addslashes($_POST['brandstoffilter']);
$cp = addslashes($_POST['cp']);
$rt = addslashes($_POST['rt']);
$vk = addslashes($_POST['vk']);
$vr1 = addslashes($_POST['vr1']);
$vr2 = addslashes($_POST['vr2']);
$vr3 = addslashes($_POST['vr3']);
$mvr1 = addslashes($_POST['mvr1']);
$mvr2 = addslashes($_POST['mvr2']);
$afgiftedeel1 = addslashes($_POST['afgiftedeel1']);
$apktot = addslashes($_POST['apktot']);
$kenteken = addslashes($_POST['kenteken']);
$merk = addslashes($_POST['merk']);
$type = addslashes($_POST['type']);
$chassisnummer = addslashes($_POST['chassisnummer']);
$motornummer = addslashes($_POST['motornummer']);
$voertuig = addslashes($_POST['voertuig']);
$rdwcode = addslashes($_POST['rdwcode']);
$email = addslashes($_POST['email']);
$distrubutieriem = addslashes($_POST['distrubutieriem']);
$bobinekabel = addslashes($_POST['bobinekabel']);
$bougies = addslashes($_POST['bougies']);
$bougie1 = addslashes($_POST['bougie1']);
$bougie2 = addslashes($_POST['bougie2']);
$bougie3 = addslashes($_POST['bougie3']);
$bougie4 = addslashes($_POST['bougie4']);
$rwv = addslashes($_POST['rwv']);
$rwa = addslashes($_POST['rwa']);
$remblokken = addslashes($_POST['remblokken']);
$remschoenen = addslashes($_POST['remschoenen']);
$remschijven = addslashes($_POST['remschijven']);
$verkochtop = addslashes($_POST['verkochtop']);
$verkochtmetkmstand = addslashes($_POST['verkochtmetkmstand']);
mysql_query("INSERT INTO klanten (voornaam, achternaam, adres, postcode, woonplaats, telefoonnummer, mobielnummer, telefoonwerk, oliefilter, luchtfilter, brandstoffilter, cp, rt, vk, vr1, vr2, vr3, mvr1, mvr2, afgiftedeel1, apktot, kenteken, merk, type, chassisnummer, motornummer, voertuig, rdwcode, email, distrubutieriem, bobinekabel, bougies, bougie1, bougie2, bougie3, bougie4, rwv, rwa, remblokken, remschoenen, remschijven, verkochtop, verkochtmetkmstand)
VALUES ('".$voornaam."', '".$achternaam."', '".$adres."', '".$postcode."', '".$woonplaats."', '".$telefoonnummer."', '".$mobielnummer."','".$telefoonwerk."', '".$oliefilter."','".$luchtfilter."', '".$brandstoffilter."','".$cp."', '".$rt."', '".$vk."', '".$vr1."', '".$vr2."', '".$vr3."', '".$mvr1."', '".$mvr2."', '".$afgiftedeel1."', '".$apktot."', '".$kenteken."', '".$merk."', '".$type."', '".$chassisnummer."', '".$motornummer."', '".$voertuig."', '".$rdwcode."', '".$email."', '".$distrubutieriem."', '".$bobinekabel."', '".$bougies."', '".$bougie1."', '".$bougie2."', '".$bougie3."', '".$bougie4."', '".$rwv."', '".$rwa."', '".$remblokken."', '".$remschoenen."', '".$remschijven."', '".$verkochtop."','".$verkochtmetkmstand."')") or die (mysql_error());
echo 'De klant gegevens zijn succesvol opgeslagen.';
}
else
{
?>
<form id="form1" name="form1" method="post" action="">
<table width="100%" border="0">
<tr>
<td width="30%">Voornaam: </td>
<td width="20%"><input type="text" name="voornaam" /></td>
<td width="30%">Kenteken:</td>
<td width="20%"><input type="text" name="kenteken" /></td>
</tr>
<tr>
<td width="30%"><label>Achternaam:
</label></td>
<td width="20%"><input type="text" name="achternaam" /></td>
<td width="30%">Merk:</td>
<td width="20%"><input type="text" name="merk" /></td>
</tr>
<tr>
<td width="30%">Adres:</td>
<td width="20%"><input type="text" name="adres" /></td>
<td width="30%">Type:</td>
<td width="20%"><input type="text" name="type" /></td>
</tr>
<tr>
<td width="30%">Postcode</td>
<td width="20%"><input type="text" name="postcode" /></td>
<td width="30%">Chassis nummer: </td>
<td width="20%"><input type="text" name="chassisnummer" /></td>
</tr>
<tr>
<td width="30%">Woonplaats</td>
<td width="20%"><input type="text" name="woonplaats" /></td>
<td width="30%">Motor nummer: </td>
<td width="20%"><input type="text" name="motornummer" /></td>
</tr>
<tr>
<td width="30%">Telefoon nummer: </td>
<td width="20%"><input type="text" name="telefoonnummer" /></td>
<td width="30%">Voertuig:</td>
<td width="20%">
<select name="select">
<option>Auto</option>
<option>Boot</option>
<option>Motor</option>
<option>Scooter</option>
<option>Overig</option>
</select>
</td>
</tr>
<tr>
<td width="30%">Mobiel nummer: </td>
<td width="20%"><input type="text" name="mobielnummer" /></td>
<td width="30%">RDW Code: </td>
<td width="20%"><input type="text" name="rdwcode" /></td>
</tr>
<tr>
<td width="30%">Telefoon werk: </td>
<td width="20%"><input type="text" name="telefoonwerk" /></td>
<td width="30%">Email:</td>
<td width="20%"><input type="text" name="email" /></td>
</tr>
</table>
<table width="100%" border="0">
<tr>
<td width="30%">Olie filter:</td>
<td width="20%"><input type="text" name="oliefilter" /></td>
<td width="30%">Distrubutie riem:</td>
<td width="20%"><input type="text" name="distrubutieriem" /></td>
</tr>
<tr>
<td width="30%">Lucht filter: </td>
<td width="20%"><input type="text" name="luchtfilter" /></td>
<td width="30%">Bobine kabel: </td>
<td width="20%"><input type="text" name="bobinekabel" /></td>
</tr>
<tr>
<td width="30%">Brandstof filter: </td>
<td width="20%"><input type="text" name="brandstoffilter" /></td>
<td width="30%">Bougies:</td>
<td width="20%"><input type="text" name="bougies" /></td>
</tr>
<tr>
<td width="30%">C.P.:</td>
<td width="20%"><input type="text" name="cp" /></td>
<td width="30%">Bougie 1: </td>
<td width="20%"><input type="text" name="bougie1" /></td>
</tr>
<tr>
<td width="30%">R.T.:</td>
<td width="20%"><input type="text" name="rt" /></td>
<td width="30%">Bougie 2: </td>
<td width="20%"><input type="text" name="bougie2" /></td>
</tr>
<tr>
<td width="30%">V.K.:</td>
<td width="20%"><input type="text" name="vk" /></td>
<td width="30%">Bougie 3: </td>
<td width="20%"><input type="text" name="bougie3" /></td>
</tr>
<tr>
<td width="30%">V.R. 1:</td>
<td width="20%"><input type="text" name="vr1" /></td>
<td width="30%">Bougie 4: </td>
<td width="20%"><input type="text" name="bougie4" /></td>
</tr>
<tr>
<td width="30%">V.R. 2:</td>
<td width="20%"><input type="text" name="vr2" /></td>
<td width="30%">Rw V: </td>
<td width="20%"><input type="text" name="rwv" /></td>
</tr>
<tr>
<td width="30%">V.R. 3:</td>
<td width="20%"><input type="text" name="vr3" /></td>
<td width="30%">Rw A: </td>
<td width="20%"><input type="text" name="rwa" /></td>
</tr>
<tr>
<td width="30%">M.V.R. 1: </td>
<td width="20%"><input type="text" name="mvr1" /></td>
<td width="30%">Remblokken:</td>
<td width="20%"><input type="text" name="remblokken" /></td>
</tr>
<tr>
<td width="30%">M.V.R. 2: </td>
<td width="20%"><input type="text" name="mvr2" /></td>
<td width="30%">Remschoenen:</td>
<td width="20%"><input type="text" name="remschoenen" /></td>
</tr>
<tr>
<td width="30%"> </td>
<td width="20%"> </td>
<td width="30%">Remschijven:</td>
<td width="20%"><input type="text" name="remschijven" /></td>
</tr>
</table>
<table width="100%" border="0">
<tr>
<td width="30%">Afgifte deel 1: </td>
<td width="20%"><input type="text" name="afgiftedeel1" /></td>
<td width="30%">Verkocht op: </td>
<td width="20%"><input type="text" name="verkochtop" /></td>
</tr>
<tr>
<td width="30%">APK tot: </td>
<td width="20%"><input type="text" name="apktot" /></td>
<td width="30%">Verkocht met KM stand: </td>
<td width="20%"><input type="text" name="verkochtmetkmstand" /></td>
</tr>
</table>
<input type="submit" name="verzenden" value="verzenden">
</form>
<?
}
?>
</body>
</html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Klanten Toevoegen</title>
</head>
<body>
<?php
include ( "includes/config.php" ) ;
if ( isset ( $_POST [ 'verzenden' ] ) ) {
$telefoonnummer = addslashes ( $_POST [ 'telefoonnummer' ] ) ; $mobielnummer = addslashes ( $_POST [ 'mobielnummer' ] ) ; $telefoonwerk = addslashes ( $_POST [ 'telefoonwerk' ] ) ; $brandstoffilter = addslashes ( $_POST [ 'brandstoffilter' ] ) ; $afgiftedeel1 = addslashes ( $_POST [ 'afgiftedeel1' ] ) ; $chassisnummer = addslashes ( $_POST [ 'chassisnummer' ] ) ; $distrubutieriem = addslashes ( $_POST [ 'distrubutieriem' ] ) ; $verkochtmetkmstand = addslashes ( $_POST [ 'verkochtmetkmstand' ] ) ;
mysql_query ( "INSERT INTO klanten (voornaam, achternaam, adres, postcode, woonplaats, telefoonnummer, mobielnummer, telefoonwerk, oliefilter, luchtfilter, brandstoffilter, cp, rt, vk, vr1, vr2, vr3, mvr1, mvr2, afgiftedeel1, apktot, kenteken, merk, type, chassisnummer, motornummer, voertuig, rdwcode, email, distrubutieriem, bobinekabel, bougies, bougie1, bougie2, bougie3, bougie4, rwv, rwa, remblokken, remschoenen, remschijven, verkochtop, verkochtmetkmstand) VALUES ('" . $voornaam . "', '" . $achternaam . "', '" . $adres . "', '" . $postcode . "', '" . $woonplaats . "', '" . $telefoonnummer . "', '" . $mobielnummer . "','" . $telefoonwerk . "', '" . $oliefilter . "','" . $luchtfilter . "', '" . $brandstoffilter . "','" . $cp . "', '" . $rt . "', '" . $vk . "', '" . $vr1 . "', '" . $vr2 . "', '" . $vr3 . "', '" . $mvr1 . "', '" . $mvr2 . "', '" . $afgiftedeel1 . "', '" . $apktot . "', '" . $kenteken . "', '" . $merk . "', '" . $type . "', '" . $chassisnummer . "', '" . $motornummer . "', '" . $voertuig . "', '" . $rdwcode . "', '" . $email . "', '" . $distrubutieriem . "', '" . $bobinekabel . "', '" . $bougies . "', '" . $bougie1 . "', '" . $bougie2 . "', '" . $bougie3 . "', '" . $bougie4 . "', '" . $rwv . "', '" . $rwa . "', '" . $remblokken . "', '" . $remschoenen . "', '" . $remschijven . "', '" . $verkochtop . "','" . $verkochtmetkmstand . "')" ) or
die ( mysql_error ( ) ) ;
echo 'De klant gegevens zijn succesvol opgeslagen.' ; }
else
{
?>
<form id="form1" name="form1" method="post" action="">
<table width="100%" border="0">
<tr>
<td width="30%">Voornaam: </td>
<td width="20%"><input type="text" name="voornaam" /></td>
<td width="30%">Kenteken:</td>
<td width="20%"><input type="text" name="kenteken" /></td>
</tr>
<tr>
<td width="30%"><label>Achternaam:
</label></td>
<td width="20%"><input type="text" name="achternaam" /></td>
<td width="30%">Merk:</td>
<td width="20%"><input type="text" name="merk" /></td>
</tr>
<tr>
<td width="30%">Adres:</td>
<td width="20%"><input type="text" name="adres" /></td>
<td width="30%">Type:</td>
<td width="20%"><input type="text" name="type" /></td>
</tr>
<tr>
<td width="30%">Postcode</td>
<td width="20%"><input type="text" name="postcode" /></td>
<td width="30%">Chassis nummer: </td>
<td width="20%"><input type="text" name="chassisnummer" /></td>
</tr>
<tr>
<td width="30%">Woonplaats</td>
<td width="20%"><input type="text" name="woonplaats" /></td>
<td width="30%">Motor nummer: </td>
<td width="20%"><input type="text" name="motornummer" /></td>
</tr>
<tr>
<td width="30%">Telefoon nummer: </td>
<td width="20%"><input type="text" name="telefoonnummer" /></td>
<td width="30%">Voertuig:</td>
<td width="20%">
<select name="select">
<option>Auto</option>
<option>Boot</option>
<option>Motor</option>
<option>Scooter</option>
<option>Overig</option>
</select>
</td>
</tr>
<tr>
<td width="30%">Mobiel nummer: </td>
<td width="20%"><input type="text" name="mobielnummer" /></td>
<td width="30%">RDW Code: </td>
<td width="20%"><input type="text" name="rdwcode" /></td>
</tr>
<tr>
<td width="30%">Telefoon werk: </td>
<td width="20%"><input type="text" name="telefoonwerk" /></td>
<td width="30%">Email:</td>
<td width="20%"><input type="text" name="email" /></td>
</tr>
</table>
<table width="100%" border="0">
<tr>
<td width="30%">Olie filter:</td>
<td width="20%"><input type="text" name="oliefilter" /></td>
<td width="30%">Distrubutie riem:</td>
<td width="20%"><input type="text" name="distrubutieriem" /></td>
</tr>
<tr>
<td width="30%">Lucht filter: </td>
<td width="20%"><input type="text" name="luchtfilter" /></td>
<td width="30%">Bobine kabel: </td>
<td width="20%"><input type="text" name="bobinekabel" /></td>
</tr>
<tr>
<td width="30%">Brandstof filter: </td>
<td width="20%"><input type="text" name="brandstoffilter" /></td>
<td width="30%">Bougies:</td>
<td width="20%"><input type="text" name="bougies" /></td>
</tr>
<tr>
<td width="30%">C.P.:</td>
<td width="20%"><input type="text" name="cp" /></td>
<td width="30%">Bougie 1: </td>
<td width="20%"><input type="text" name="bougie1" /></td>
</tr>
<tr>
<td width="30%">R.T.:</td>
<td width="20%"><input type="text" name="rt" /></td>
<td width="30%">Bougie 2: </td>
<td width="20%"><input type="text" name="bougie2" /></td>
</tr>
<tr>
<td width="30%">V.K.:</td>
<td width="20%"><input type="text" name="vk" /></td>
<td width="30%">Bougie 3: </td>
<td width="20%"><input type="text" name="bougie3" /></td>
</tr>
<tr>
<td width="30%">V.R. 1:</td>
<td width="20%"><input type="text" name="vr1" /></td>
<td width="30%">Bougie 4: </td>
<td width="20%"><input type="text" name="bougie4" /></td>
</tr>
<tr>
<td width="30%">V.R. 2:</td>
<td width="20%"><input type="text" name="vr2" /></td>
<td width="30%">Rw V: </td>
<td width="20%"><input type="text" name="rwv" /></td>
</tr>
<tr>
<td width="30%">V.R. 3:</td>
<td width="20%"><input type="text" name="vr3" /></td>
<td width="30%">Rw A: </td>
<td width="20%"><input type="text" name="rwa" /></td>
</tr>
<tr>
<td width="30%">M.V.R. 1: </td>
<td width="20%"><input type="text" name="mvr1" /></td>
<td width="30%">Remblokken:</td>
<td width="20%"><input type="text" name="remblokken" /></td>
</tr>
<tr>
<td width="30%">M.V.R. 2: </td>
<td width="20%"><input type="text" name="mvr2" /></td>
<td width="30%">Remschoenen:</td>
<td width="20%"><input type="text" name="remschoenen" /></td>
</tr>
<tr>
<td width="30%"> </td>
<td width="20%"> </td>
<td width="30%">Remschijven:</td>
<td width="20%"><input type="text" name="remschijven" /></td>
</tr>
</table>
<table width="100%" border="0">
<tr>
<td width="30%">Afgifte deel 1: </td>
<td width="20%"><input type="text" name="afgiftedeel1" /></td>
<td width="30%">Verkocht op: </td>
<td width="20%"><input type="text" name="verkochtop" /></td>
</tr>
<tr>
<td width="30%">APK tot: </td>
<td width="20%"><input type="text" name="apktot" /></td>
<td width="30%">Verkocht met KM stand: </td>
<td width="20%"><input type="text" name="verkochtmetkmstand" /></td>
</tr>
</table>
<input type="submit" name="verzenden" value="verzenden">
</form>
<?
}
?>
</body>
</html>
Dat heb ik al...
Maar hoe krijg ik dat met me dropdown menu voor elkaar ik snap wel met die namen enzo maar niet hoe je welke optie je moet doen voor in de database te zetten...
Rens - 10/10/2005 21:28
Crew algemeen
<td width="20%">
<select name="select">
<option>Auto</option>
<option>Boot</option>
<option>Motor</option>
<option>Scooter</option>
<option>Overig</option>
</select>
</td>
< td width= "20%" >
< select name= "select" >
< option> Auto</ option>
< option> Boot</ option>
< option> Motor</ option>
< option> Scooter</ option>
< option> Overig</ option>
</ select>
</ td>
regel 105 t/m 113
Aanpassen naar:
<td width="20%">
<select name="select">
<option value="Auto">Auto</option>
<option value="Boot">Boot</option>
<option value="Motor">Motor</option>
<option value="Scooter">Scooter</option>
<option value="Overig">Overig</option>
</select>
</td>
< td width= "20%" >
< select name= "select" >
< option value= "Auto" > Auto</ option>
< option value= "Boot" > Boot</ option>
< option value= "Motor" > Motor</ option>
< option value= "Scooter" > Scooter</ option>
< option value= "Overig" > Overig</ option>
</ select>
</ td>
Dan zet je bij je PHP code erbij:
$select = addslashes($_POST['select']);
Dan kun je bij je query een veldje erbij zetten.
mysql_query("INSERT INTO klanten (voornaam, achternaam, adres, postcode, woonplaats, telefoonnummer, mobielnummer, telefoonwerk, oliefilter, luchtfilter, brandstoffilter, cp, rt, vk, vr1, vr2, vr3, mvr1, mvr2, afgiftedeel1, apktot, kenteken, merk, type, chassisnummer, motornummer, voertuig, rdwcode, email, distrubutieriem, bobinekabel, bougies, bougie1, bougie2, bougie3, bougie4, rwv, rwa, remblokken, remschoenen, remschijven, verkochtop, verkochtmetkmstand, select)
VALUES ('".$voornaam."', '".$achternaam."', '".$adres."', '".$postcode."', '".$woonplaats."', '".$telefoonnummer."', '".$mobielnummer."','".$telefoonwerk."', '".$oliefilter."','".$luchtfilter."', '".$brandstoffilter."','".$cp."', '".$rt."', '".$vk."', '".$vr1."', '".$vr2."', '".$vr3."', '".$mvr1."', '".$mvr2."', '".$afgiftedeel1."', '".$apktot."', '".$kenteken."', '".$merk."', '".$type."', '".$chassisnummer."', '".$motornummer."', '".$voertuig."', '".$rdwcode."', '".$email."', '".$distrubutieriem."', '".$bobinekabel."', '".$bougies."', '".$bougie1."', '".$bougie2."', '".$bougie3."', '".$bougie4."', '".$rwv."', '".$rwa."', '".$remblokken."', '".$remschoenen."', '".$remschijven."', '".$verkochtop."','".$verkochtmetkmstand."', '".$select."'")") or die (mysql_error());
mysql_query ( "INSERT INTO klanten (voornaam, achternaam, adres, postcode, woonplaats, telefoonnummer, mobielnummer, telefoonwerk, oliefilter, luchtfilter, brandstoffilter, cp, rt, vk, vr1, vr2, vr3, mvr1, mvr2, afgiftedeel1, apktot, kenteken, merk, type, chassisnummer, motornummer, voertuig, rdwcode, email, distrubutieriem, bobinekabel, bougies, bougie1, bougie2, bougie3, bougie4, rwv, rwa, remblokken, remschoenen, remschijven, verkochtop, verkochtmetkmstand, select) VALUES ('" . $voornaam . "', '" . $achternaam . "', '" . $adres . "', '" . $postcode . "', '" . $woonplaats . "', '" . $telefoonnummer . "', '" . $mobielnummer . "','" . $telefoonwerk . "', '" . $oliefilter . "','" . $luchtfilter . "', '" . $brandstoffilter . "','" . $cp . "', '" . $rt . "', '" . $vk . "', '" . $vr1 . "', '" . $vr2 . "', '" . $vr3 . "', '" . $mvr1 . "', '" . $mvr2 . "', '" . $afgiftedeel1 . "', '" . $apktot . "', '" . $kenteken . "', '" . $merk . "', '" . $type . "', '" . $chassisnummer . "', '" . $motornummer . "', '" . $voertuig . "', '" . $rdwcode . "', '" . $email . "', '" . $distrubutieriem . "', '" . $bobinekabel . "', '" . $bougies . "', '" . $bougie1 . "', '" . $bougie2 . "', '" . $bougie3 . "', '" . $bougie4 . "', '" . $rwv . "', '" . $rwa . "', '" . $remblokken . "', '" . $remschoenen . "', '" . $remschijven . "', '" . $verkochtop . "','" . $verkochtmetkmstand . "', '" . $select . "'" ) ") or die (mysql_error());
Reken er trouwens niet op dat je query werkt, ik heb er nu gewoon even een veld "select" achteraan geplakt als voorbeeld.
Marly - 10/10/2005 21:33
HTML interesse
Yeah!
Hartstikke bedankt het werkt en nu snap ik het zekers!
Gesponsorde links
Dit onderwerp is gesloten .