Add files via upload

This commit is contained in:
wibyweb 2022-08-10 02:17:38 -04:00 committed by GitHub
parent 948c1f5e3c
commit f7ea6dcab8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -42,11 +42,11 @@
if($delete == 'on')
{
$sql = 'DELETE FROM windex WHERE url = "'.$url.'"';
$sql = "DELETE FROM windex WHERE url = '".$url."'";
}
else
{
$sql = 'UPDATE windex SET enable = 0 WHERE url = "'.$url.'"';
$sql = "UPDATE windex SET enable = 0 WHERE url = '".$url."'";
}
if (!mysqli_query($link, $sql))