PHP value in textbox opslaan
Mark Markson
11/04/2012 15:21:16Ik wil dat, als een gebruiker zich verkeerd registreert, zijn opgegeven value in een textbox bewaart blijft, met PHP. Zo hoeft hij dan niet opnieuw de textbox in te vullen. Ik bedoelde zoiets:
<input type="text" name="voornaam" id="voornaam" value=""/>
of
<input type="text" name="voornaam" id="voornaam" value=""/>
if(isset($_POST['button']))
{
include("connection.php");
$vnm = $_POST['voornaam'];
}
Daar vraag ik $vnm op, ik krijg dit:
<br /><b>Notice</b>: Undefined index: voornaam in <b>100</b><br />
Hij kent de variabele dus niet...
<input type="text" name="voornaam" id="voornaam" value=""/>
of
<input type="text" name="voornaam" id="voornaam" value=""/>
if(isset($_POST['button']))
{
include("connection.php");
$vnm = $_POST['voornaam'];
}
Daar vraag ik $vnm op, ik krijg dit:
<br /><b>Notice</b>: Undefined index: voornaam in <b>100</b><br />
Hij kent de variabele dus niet...
PHP hulp
22/12/2024 18:39:35Obelix Idefix
11/04/2012 15:34:29Mark Markson
11/04/2012 15:40:08Ik heb hem al :), dankje voor de moeite.
Ik heb dit:
<input type="text" name="voornaam" id="voornaam" value=""/>
Ik heb dit:
<input type="text" name="voornaam" id="voornaam" value=""/>
Obelix Idefix
11/04/2012 15:43:09Mebus Hackintosh
11/04/2012 16:07:12Code (php)
1
<input type="text" name="voornaam" id="voornaam" value="<?php (isset($_POST['voornaam'])) ? echo htmlspecialchars($_POST['voornaam']) : echo ''; ?>" />
even snel.
Gewijzigd op 11/04/2012 16:08:38 door Mebus Hackintosh