ok, what i want to do is this, i want to through an admin cp delete a row in a database. each row has its own id, title and content. so i want to be able to do something like www.mysite.com/admin/delete.php?id=5 and it will delete the row with the id# 5. how would i do this?
mysql_query("DELETE FROM tabella WHERE id=".$_GET["id"]);
dont forget to mysql_connect
thats for mysql but if u use other dbs....