I use a select to access multiple sites example: city-1, city-2, city-3, when I select the city the url is: www.mysite.com/city-1. I have tried to use ajax for the URL to be fixed at: www.mysite.com, but I did not succeed.
<?php
switch ($_GET['cidade']) {
case 'cidade-a':
header('Location: /seletor/cidade-1.php');
exit;
case 'cidade-b':
header('Location: /seletor/cidade-2.php');
exit;
case 'cidade-c':
header('Location: /seletor/cidade-3.php');
exit;
// default:
// header('Location: /seletor/index.php');
// exit;
} ?>
<form action="cid.php" method="get">
<select name="cidade" id="cidade">
<option>Selecione</option>
<option value="cidade-a">Cidade 1</option>
<option value="cidade-b">Cidade 2</option>
<option value="cidade-c">Cidade 3</option>
</select>
<input type="submit" name="submit" id="submit" class="botao" value="Ok">
</form>
Thank you very much for helping me.