estoy tratando de trabajar con chexbox en php, pero no me resulta:
este es mi codigo con lo ke genero esta tabla:
Código PHP:
<?php
$host="localhost";
$usuarioBD="xxx";
$contaseñaBD="xxx";
$base_de_datos="pruebas";
$tabla="test1";
$coneccion = mysql_connect($host,$usuarioBD,$contraseñaBD) or die (mysql_error());
mysql_select_db($base_de_datos, $coneccion) or die (mysql_error());
$resultado = ("SELECT nombre, pais FROM test1");
$resultado_final = mysql_query($resultado, $coneccion) or die (mysql_error());
//--------------------------------------------------------------
//--------------------------------------------------------------
echo "<table border='1'> \n";
echo "<tr> \n";
echo "<td></td> \n";
echo "<td><b>Nombre</b></td> \n";
echo "<td><b>Pais</b></td> \n";
echo "</tr> \n";
while ($row = mysql_fetch_row($resultado_final)){
echo "<tr> \n";
echo "<td><input type=\"checkbox\" name=\"$ver\" value=\"checkbox\"></td> \n";
echo "<td>$row[0]</td> \n";
echo "<td>$row[1]</td> \n";
echo "</tr> \n";
}
echo "</table> \n";
?>
como puedo realizar una funcion, que al momento que el usuario selecione un chexbox, y los datos selecionados salgan de la tabla y se ingresen a una tabla nueva.
se me olvidaba, asi esta compuesta mi tabla de mi base de datos
Código PHP:
CREATE TABLE `test1` (
`id` int(10) NOT NULL auto_increment,
`nombre` varchar(20) NOT NULL default '',
`pais` varchar(20) NOT NULL default '',
PRIMARY KEY (`id`)
) TYPE=MyISAM AUTO_INCREMENT=3 ;
saludos