Dr Dau
ich wisch hier durch
OK, dann halt ganz anders.....
PHP:
<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="POST">
<table>
<tr>
<td class="content2\"><?php echo $dbspalte_1; ?><input type="hidden" name="spalte[]" value="<?php echo $dbspalte_1; ?>"></td>
<td class="content2\"><?php echo $dbspalte_2; ?><input type="hidden" name="spalte[]" value="<?php echo $dbspalte_2; ?>"></td>
<td class="content2\"><?php echo $dbspalte_3; ?><input type="hidden" name="spalte[]" value="<?php echo $dbspalte_3; ?>"></td>
<td class="content2\"><?php echo $dbspalte_4; ?><input type="hidden" name="spalte[]" value="<?php echo $dbspalte_4; ?>"></td>
<td class="content2\"><?php echo $dbspalte_5; ?><input type="hidden" name="spalte[]" value="<?php echo $dbspalte_5; ?>"></td>
<td class="content2\"><?php echo $multiEKxP; ?><input type="hidden" name="spalte[]" value="<?php echo $multiEKxP; ?>"></td>
<td class="content2\"><?php echo $multiVKxP; ?><input type="hidden" name="spalte[]" value="<?php echo $multiVKxP; ?>"></td>
<td class="content2\"><?php echo $dbspalte_6; ?><input type="hidden" name="spalte[]" value="<?php echo $dbspalte_6; ?>"></td>
<td class="content2\"><?php echo $dbspalte_7; ?><input type="hidden" name="spalte[]" value="<?php echo $dbspalte_7; ?>"></td>
</tr>
</table>
<input type="submit" name="make_csv" value="Schreib in Datei">
</form>
<?php
if(isset($_POST['make_csv'])) {
$anzahl = count($_POST['spalte']);
for($i=0;$i<$anzahl;$i++) {
$print = implode(";", $_POST['spalte']);
}
$handle = fopen("./meineDatei.csv","w");
fwrite($handle,$print."\r\n");
fclose($handle);
}
?>