Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.
PHP javascript link onclick
dw .. thanks guys i done it like this :
viewer.php
<a href=deleteitem.php?id=$id>Delete Item</a><br>
<br></b></font>
");
}
?>
</center>```
then deleteitem.php
```markup<?
require "config.php";
database_connect();
$id = $_GET['id'];
$sql = "DELETE FROM contact
WHERE id = '$id'";
$query = mysql_query($sql)or die("There was a problem while deleting: ". mysql_error());
?>```
sawted