Para que el ejercicio funcione necesitamos realizar las siguientes tareas con respecto al código fuente de ese sitio:
Crear una tabla llamada "tabla_relacion" que contenga los campos país, ciudad (ambos varchar).
Ademas de las estructuras de las tablas país y continente del ejercicio
Reprogramar el archivo index.php con el siguiente código.
¿
<?php
include 'conexión.php';
if($_POST){
$contienente=$_POST["continente"];
$país=$_POST["país"];
$sql="insert into tabla_relacion (país, ciudad) values ('".$continente."', '".$país."')";
$con=conexión();
$res=mysql_query($sql, $con);
}
?>
<!DOCTYPE html>
<html>
<head>
<script src="ajax.js"></script>
</head>
<body>
<form method="post" action="./index.php">
<h2>HTML - PHP - AJAX - MySQL</h2>
<?php
$con=conexión();
$res=mysql_query("select * from continente",$con);
?>
<select id="cont" name="continente" onchange="load(this.value)">
<option value="">Seleccione</option>
<?php
while($fila=mysql_fetch_array($res)){
?>
<option value="<?php echo $fila[código]; ?>"><?php echo $fila[nombre]; ?></option>
<?php } ?>
</select>
<div id="myDiv"></div>
<input type="submit" value="Guardar">
</type>
</body>
</html>
----------------------------------------------------------------------------
Reprogramar el archivo proc.php (OJO QUE EN LA PAGINA LE COLOCARON POR NOMBRE PROC.JS! Está equivocado hay que mantener el nombre proc.js)
<?php
include 'conexión.php';
$que=$_POST['que'];
$con=conexión();
$res=mysql_query("select * from país where cod_cont=".$q."",$con);
?>
<select name="país">
<?php while($fila=mysql_fetch_array($res)){ ?>
<option><?php echo $fila[nombre]; ?></option>
<?php } ?>
</select>
Los que se ha hecho es primer modificar el index para que tenga un botón enviar que guarde la información y añadimos una etiqueta form para que haga la petición http.
En el archivo proc.php hemos dado un nombre al elemento que aparecerá con tal de que pueda ser rescatado cuando lo envíe el formulario.