queicherius
♥ PHP ♥
Du musst die Variable $postleitzahl erst zuweisen, falls du "register_globals" auf "off" hast:
PHP:
<?php
if ( isset($_POST['postleitzahl']) )
{
$plz = (int) $_POST['postleitzahl'];
if ( $plz >= 70000 )
{
$adresse = "<h1>Titel</h1>
Adresse<br>";
}
}
else
{
$adresse = "";
}
?>