Code: Select all
$query="DELETE FROM `myTable` WHERE 'ID'='$myId' ";
$result=mysql_query($query);That should work because all my SELECT statements are just like that except I use the work "Like" just because thats what I saw in tutorials
Code: Select all
$query="SELECT * FROM `myTable` WHERE 'ID' LIKE '$myId' ";
$result=mysql_query($query);Any help is appreciated,
Rob.