Programming/Php

[PHP] DB delete

gl2ep 2014. 5. 15. 14:14

$no = $_GET[no];

$id = $_GET[id];


$sql = "delete from 테이블명 where no=$no;" ;

mysql_query($sql) or die (mysql_error());