Sry war ein Flüchtigkeitsfehler.
Ich das script mal schöner gemacht.
<html>
<head>
<?php
include ("db.php");
?>
<link rel="stylesheet" type="text/css" href="style.css">
<script language="javascript" type="text/javascript" src="cell.js"></script>
</head>
<body>
<div style="width:100%;height:50%;">
<?php
include ("btn.php");
?>
</div>
<div style="width:100%;height:50%;">
<table id="myTable">
<thead>
<tr>
<th class="1">Pos</th>
<th class="2">Artikel</th>
<th class="3">Preis</th>
</tr>
<tr>
</tr>
<tbody>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</div>
</body>
</html>
so in Ordnung jetzt?
warum soll ich die DB-Resultate in die Tabelle scheiben wollen?
<td><?=$ergebnis['preis']?></td>
Ich will wenn man auf den Button klickt, der wunderbar aus der DB erzeugt wird, die Werte des Buttons in die Tabelle scheiben. Oder geht das anders?
Danke