‘class’ : ‘gray’,
‘action’: function(){} // Nothing to do in this case. You can as well omit the action property.
}
}
});
});
});
del.php
<?php
require “conn.php”;
$id=$_GET[‘id’];
$delete_small_sql = “delete from add_delete_record where id=’$id'”;
$result_small = mysql_query($delete_small_sql);
?>










