Hallo
Ich muss ein Auswahl-Alphabet in Form von normalen
Standardbuttons erstellen, also alle Buchstaben von A bis Z
als Schaltfläche klickbar, wo mir dann die entsprechenden
Daten per sql geliefert werden…
Ich hab nur grad null ahnung, wie ich die Buchstaben alle
schön gleichmässig nebeneinander (oder aber 2 zeilen) in der
gleichen Grösse platziert bekomm… geht wohl nur mit HTML,
oder ist das auch mit PHP zu realisieren?
Verstehe nicht so recht,
was Du genau meinst. Sowas
hier? First Hack:
[save as: charbutton.php]
Title
#charbuttons { width:480px; margin:12px; }
#charbuttons input { width:auto; height:32px; font-size:20px; margin-bottom:4px; }
#utxt { margin-left:12px; font-size:20px; height:1.2em; width:450px; color:#990000}
<?php if(isset($_REQUEST['utxt'])) {
echo "opening database, sending '{$\_REQUEST['utxt']}'
";
echo '[insert you database command here]
';
echo 'database answer: ...
[Again](charbutton.php)';
}
else {
?\>
<?php $tmpl='';
foreach(range('A', 'Z') as $char) echo preg\_replace('/§/', $char, $tmpl);
?\>
<?php }
?\>
Grüße
CMБ