List php
Hola amigo.. En este list agrego manualmente POR valores... Como puedo guardar estos valores de la lista en una tabla mysql(frutas-(idfruta-descripción)).. El id no importa si se repite o no...
<html>
<head>
<title>Añadir</title>
<p align="center"><b>Frutas
<script>
function add()
{
var newitem=prompt("Añadir nuevo :","");
document.form.list[document.form.list.length] = new Option(newitem, document.form.list.length);
}
function del()
{
if (document.form.list.selectedIndex >= 0)
{
document.form.list.options[document.form.list.selectedIndex]=null;
document.form.list.selectedIndex=0;
}
}
</script>
</head>
</b>
<body>
</p>
<center>
<form name="form">
<p><select name="list" size="5"></select></p>
<p><input type="button" value="Añadir" onClick="add()">
<input type="button" value="Borrar" onClick="del()"></p>
</form>
</center>
</body>
</html>
<html>
<head>
<title>Añadir</title>
<p align="center"><b>Frutas
<script>
function add()
{
var newitem=prompt("Añadir nuevo :","");
document.form.list[document.form.list.length] = new Option(newitem, document.form.list.length);
}
function del()
{
if (document.form.list.selectedIndex >= 0)
{
document.form.list.options[document.form.list.selectedIndex]=null;
document.form.list.selectedIndex=0;
}
}
</script>
</head>
</b>
<body>
</p>
<center>
<form name="form">
<p><select name="list" size="5"></select></p>
<p><input type="button" value="Añadir" onClick="add()">
<input type="button" value="Borrar" onClick="del()"></p>
</form>
</center>
</body>
</html>
2 Respuestas
Respuesta de apolinux
1
Respuesta
-1