Delete

HTML:
<html>
<head>
<title>News</title>
</head>
<table border="0" width="100%" cellspacing="0" cellpadding="0">
	<tr>
		<td width="3">
		<img border="0" src="img/page/content/1.jpg" width="3" height="23"></td>
		<td background="img/page/content/4.jpg">
		<table border="0" width="100%" cellspacing="0" cellpadding="0">
			<tr>
				<td width="23" valign="top">
		<img border="0" src="img/page/content/5.jpg" width="24" height="19" valign="top"></td>
				<td align="left">$titel geschrieben am $datum</td>
			</tr>
		</table>
		</td>
		<td width="3">
		<img border="0" src="img/page/content/2.jpg" width="3" height="23"></td>
	</tr>
</table>
<table border="0" width="100%" cellspacing="0" cellpadding="0" bgcolor="#6E6E6E" height="4">
	<tr>
		<td></td>
		<td></td>
	</tr>
</table>

<table border="0" width="100%" cellspacing="0" cellpadding="0" bgcolor="#6E6E6E">
	<tr>
		<td width="7"></td>
		<td>$inhalt</td>
		<td width="4"></td>
	</tr>
</table>
<table border="0" width="100%" cellspacing="0" cellpadding="0" bgcolor="#6E6E6E" height="9">
	<tr>
		<td></td>
		<td></td>
	</tr>
</table>
<table border="0" width="100%" cellspacing="0" cellpadding="0">
	<tr>
		<td width="3">
		<img border="0" src="img/page/content/6.jpg" width="3" height="23"></td>
		<td background="img/page/content/8.jpg">
		<table border="0" width="100%" cellspacing="0" cellpadding="0">
		<form action="index.php?section=newsedit" method=post>
			<tr>
				<td align="right">
				<input type="hidden" name="Id" value="$Id"> 
				<input type="submit" name="delete" value="News Löschen">
				<input type="submit" name="edit" value="News editieren"></td>
			</tr>
		</table>
		</td>
		<td width="3">
		<img border="0" src="img/page/content/7.jpg" width="3" height="23"></td>
	</tr>
</table>
<table border="0" width="100%" cellspacing="0" cellpadding="0" height="9">
	<tr>
		<td></td>
	</tr>
</table>









</html>


und? :S
 
Du hast den schließenden Form-Tag vergessen:
HTML:
<form action="index.php?section=newsedit" method=post>
    <tr>
        <td align="right">
            <input type="hidden" name="Id" value="$Id"> 
            <input type="submit" name="delete" value="News Löschen">
            <input type="submit" name="edit" value="News editieren">
        </td>
    </tr>
</form> <!-- den hier -->
 
Zurück