danke ich habe gedacht das gehört zu den imput, vielen dank.
aber wenn ich onsubmit="return false;" ind das <form tag einfüge, sogar die tasten die ich im prog programmiert habe, laufen nicht.
das prog sieht so aus:
<table>
<form action="tes6.php" method="post" onsubmit="return false;">
<?php
if (isset($_REQUEST['loeschen1'])) {
unset($_REQUEST['Inhalt1']);}
?>
<?php
if (isset($_REQUEST['loeschen1'])) {
unset($_REQUEST['Inhalt2']);}
?>
<?php
if (isset($_REQUEST['loeschen1'])) {
unset($_REQUEST['Inhalt3']);}
?>
<?php
if (isset($_REQUEST['loeschen1'])) {
unset($_REQUEST['Inhalt8']);}
?>
<?php
if (isset($_REQUEST['loeschen1'])) {
unset($_REQUEST['Inhalt10']);}
?>
<td>
<input type="text" size="17" name="Inhalt1" value="<?php @print $_REQUEST['Inhalt1']; ?>">
</td>
<td>
<input type="text" size="17" name="Inhalt2" value="<?php @print $_REQUEST['Inhalt2']; ?>">
</td>
<td>
<input type="text" size="17" name="Inhalt3" value="<?php @print $_REQUEST['Inhalt3']; ?>">
</td>
<td>
<!-----------------------Aktuelle Datum in Tabelle--------------->
<input type="text" size="17" name="Inhalt8" value="<?php @print $_REQUEST['Inhalt8']; if(isset($_POST['taste1'])){
$Inhalt8=date("d.m.y H:i");
echo "$Inhalt8";}
?>"
</td>
<!-----------------------------Datum plus 24h Tabelle------------>
<td>
<input type="text" size="17" name="Inhalt10" value="<?php @print $_REQUEST['Inhalt10']; if(isset($_POST['taste1'])){
$Inhalt10=date("d.m.y H:i", time()+3600*24);
echo "$Inhalt10";}
?>"
</td>
<td>
<input type="submit" name="taste1" value="OK1">
</td>
<td align= "center">
<input type="submit" name="loeschen1" value="Löschen1"/>
</td>
</tr>
</table>