Ich bitte ein letztes Mal um Hilfe
PHP:
foreach( file( "intern/projects.txt" ) as $intIdx => $v )
{
$d = explode( "|", $v );
$name = $d[0];
$url = $d[1];
$info = $d[2];
echo "
<input type='hidden' name='linenumber' value='$intIdx'>
<br>
<table width='100%' bgcolor='#e9e9e9' style='border-width: 2px; border-style: dotted; border-color: #ff7b10;'>
<tr>
<td width='100%'>
<font color='#ff7b10'><b>$name:</b></font> <a href='$url' target='_blank'>$url</a>
<br>
<font color='#150185'>$info</font>
</td>
<td valign='top'>
<input type='submit' name='delete_projects' class='button' style='width: 80px; color: #FF0000;' value='Löschen'>
</td>
</tr>
</table>
";
}