G:
/
PleskVhosts
/
seeonsoft.com
/
hp.thefalconunited.com
/
up file
home
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> </head> <body> <?php include('config.php'); $id = filter_input(INPUT_GET, 'vehicleid'); $js->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); $result11 = $js->prepare('DELETE FROM `vehicles` WHERE `id` = :id '); $result11->bindParam(':id', $id); $result11->execute(); if ($result11) { $f = 1; } else { print_r($js->errorInfo()); } if($f == 1) { ?> <script type="text/javascript"> alert("Have Successfully Deleted Vehicle"); window.location = 'vehicles.php'</script> <?php } ?> </body> </html>