Quelltext:
<script>
function anzeige(t) {
publicSQL.show(t, 'mytable');
}function showResult() {
publicSQL.query('select Station from stations order by Station', 'anzeige');
}
</script>
<form name="form1" method="post" action="">
<input name="btStart" type="button" id="btStart" onClick="showResult();" value="Start">
<!-- hier kann ein Text zur Abfrage eingefügt werden -->
<br><br>
</form>
<table id="mytable" border="1">
<tr>
<td></td>
</tr>
</table>