naja, das ist aber auch keine lösung! wo bleibt der ehrgeiz?
Wie lösche ich.....
Einklappen
X
-
-
Das ist der Code den ich jetzt nutze:
PHP-Code:<?php
include('datei.inc.php');
if ($aktion == "delete")
{
$con = mysql_connect($dbserver,$dbuser,$dbpass);
mysql_select_db($dbname,$con);
$query = "DELETE FROM gal WHERE id=". $id ."";
$result = mysql_query($query,$con);
if (!$result)
{
die ("Sorry, Datenbankeintrag konnte nicht gelöscht werden!");
}
mysql_close($con);
}
echo"<html>".
"<head>".
"<title>Galerie-Projekt löschen</title>".
"</head>".
"<body text=\"#000000\" link=\"#000000\" vlink=\"#000000\" alink=\"#000000\">";
$con = mysql_connect ($dbserver,$dbuser,$dbpass) or die ("Konnte nicht zur Datenbank verbinden!");
$select_db = mysql_select_db($dbname, $con);
$query = "SELECT * FROM gal ORDER BY projekt ASC";
$res = mysql_query($query,$con);
$gesamt = mysql_num_rows($res);
if ($gesamt == 0)
{
echo "Keine Beiträge vorhanden !";
}
echo"<H4 align=\"center\"><font face=\"Arial, Helvetica, sans-serif\">Galerie-Projekt löschen</font></H4>".
"<table width=\"75%\" border=\"0\" align=\"center\" cellpadding=\"2\" cellspacing=\"0\" bgcolor=\"#CCCCCC\">".
"<tr>".
"<td STYLE=\"border-color:#990000; border-style:solid; border-top-width:2px; border-left-width:2px; border-right-width:0px; border-bottom-width:2px\"><font size=\"2\" face=\"Arial, Helvetica, sans-serif\"><strong>Projekt Name</strong></font></td>".
"<td STYLE=\"border-color:#990000; border-style:solid; border-top-width:2px; border-left-width:2px; border-right-width:0px; border-bottom-width:2px\"><font size=\"2\" face=\"Arial, Helvetica, sans-serif\"><strong>Interne URL</strong></font></td>".
"<td STYLE=\"border-color:#990000; border-style:solid; border-top-width:2px; border-left-width:2px; border-right-width:2px; border-bottom-width:2px\"><font size=\"2\" face=\"Arial, Helvetica, sans-serif\"><strong>Externe URL</strong></font></td>".
"</tr>";
while ($zeileholen = mysql_fetch_array($res))
{
echo"<tr>".
"<td STYLE=\"border-color:#990000; border-style:solid; border-top-width:0px; border-left-width:2px; border-right-width:0px; border-bottom-width:2px\"><a href=\"delete.php?aktion=delete&id=".$zeileholen["id"]."\">" . $zeileholen["projekt"] ."</a></td>".
"<td STYLE=\"border-color:#990000; border-style:solid; border-top-width:0px; border-left-width:2px; border-right-width:0px; border-bottom-width:2px\">". stripslashes($zeileholen["intern"])."</td>".
"<td STYLE=\"border-color:#990000; border-style:solid; border-top-width:0px; border-left-width:2px; border-right-width:2px; border-bottom-width:2px\">". stripslashes($zeileholen["extern"])."</td>".
"</tr>";
}
echo"</table>".
"<table width=\"75%\" border=\"0\" align=\"center\" cellpadding=\"4\" cellspacing=\"0\">".
"<tr>".
"<td><div align=\"right\"><br><a href=\"eintragen.php\">Projekt eintragen</a> <a href=\"update.php\">Eintrag editieren</a> <a href=\"delete.php\">Eintrag löschen</a> <a href=\"gal.php\">Galerie ansehen</a></div></td>".
"</tr>".
"</table>".
"</body>".
"</html>";
mysql_close($con);
?>
Kommentar
-
also die php.ini datei sollte richtig und komplett eingestellt sein, da mein bruder selber einen server betreibt und dies als beruf hat..... er kann sich das auch nicht wirklich erklären,doch es ist nun mal so...
habe auch alles nochmal auf freewebspace probiert und jetzt auch auf meinem local-server, doch es geht nicht....
Kommentar
-
Kommentar