B
BiG_G
Code:
if (empty ($first_name)){
print '<p>Type uw voornaam in<p>';
}
if (empty ($last_name)){
print '<p>Type uw achternaam in<p>';
}
if (empty ($email)){
print '<p>Type uw email adresss in<p>';
}
if (empty ($password)){
print '<p>Type uw paswoord in<p>';
}
if (empty ($first_name)){
print '<p>Type uw voornaam in<p>';
}
if (empty ($confirm)){
print '<p>Type nogmaals uw paswoord in<p>';
}
Kan dit korter?
Bv:
Code:
if (empty ($first_name)){
print '<p>Type uw voornaam in<p>';
if (empty ($last_name))
print '<p>Type uw achternaam in<p>';
if (empty ($email))
print '<p>Type uw email adresss in<p>';
if (empty ($password))
print '<p>Type uw paswoord in<p>';
if (empty ($first_name))
print '<p>Type uw voornaam in<p>';
if (empty ($confirm))
print '<p>Type nogmaals uw paswoord in<p>';
}
G