I have a simple form where the user chooses a value that I will be saved in the database. HTML
<form method="get" >
<div class="select-block1">
<select name="proximID" onchange="this.form.submit(); ">
<option value="" disabled selected> Votre Proxim'IT</option>
<?php foreach ($results as $output){?>
<option value="<?php echo $output['id']; ?>"> <?php echo $output["first_name"], $output["last_name"]; ?></option>
<?php } ?>
</select>
</div>
</form>
PHP
<?php
if(!empty($_GET['proximID'])) {
$stmt6 = $pdo1->query("UPDATE proximit SET ProximID = {$_GET['proximID']} "); ?>
when i choose a value, pop-up window appear " leave site?" changes you made may not be savecd". Please how can i disable this pop-up window for chrome