cris f7af9ddfa9 Patch level :
Files correlati     :
Ricompilazione Demo : [ ]
Commento            :
Prime modifiche


git-svn-id: svn://10.65.10.50/trunk@9788 c028cbd2-c16b-5b4b-a496-9718f37d4682
2001-07-09 13:45:10 +00:00

31 lines
456 B
PHP
Executable File

<html>
<head>
<title></title>
<LINK rel="stylesheet" type="text/css" href="stile.css">
</head>
<body>
<?php
include("required.php");
$db = mysql_connect($ip, $user, $password);
mysql_select_db($dataname,$db);
if (isset($tbl) && isset($id))
{
$query = "DROP ".$tbl." WHERE id = ".$id;
echo $query;
//$canc = mysql_query($query,$db);
if (!$canc)
echo "<br><br><p class=error>Cancellazione non effettuata!</p><br><br>";
}
?>
</body>
</html>