- Code: Alles auswählen
<form action="index.php?panel=29" method="post" name="gethabbo">
<input name="hhname" type="text" />
<select name="land">
<option value="de" selected="selected">Deutschland</option>
<option value="ch" selected="selected">Schweiz</option>
</select>
<input name="submit" type="submit">
</form>
<?php
$habbo = $_POST['hhname'];
$land = $_POST['land'];
if (isset($_POST['submit']))
{
echo "
<table cellspacing='1' cellpadding='1' summary='' border='0'>
<tbody>
<tr>
<td><img src="http://www.habbo.$land/habbo-imaging/avatarimage?user=$habbo&img_format=gif"></td>
</tr>
<tr>
<td><a href='http://habbo.$land/home/$habbo'><b>$habbo</b></a></td>
</tr>
</tbody>
</table>
";
}
else
{
echo"Bild kann nicht angezeigt werden.";
}
?>
