hola satjaen y gracias por querer ayudar, seguí los pasos del link que me dejaste, pero no logro grabar datos en la base
, aquí dejo mi código por si me pueden ayudar por fa.
Código HTML:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <form name="socio_new" method="post" action="index.php"> <td width="620" colspan="3" bgcolor="#246A07" >Cursos
</td>
Código PHP:
Ver original<?php
include("Api/Conections/conexion.php");
include("Api/functions/funciones.php");
$sql = mysql_query("SELECT cod,id_curso,nombre FROM temp LEFT JOIN cursos on temp.ID_CURSO=cursos.id
where cod='123'");
{
$NOMBRE_CURSO=$row['nombre'];
$ID_cur=$row['ID_CURSO'];
echo"
<tr>
<td bgcolor='#72B446'>$NOMBRE_CURSO</td>
<td><input name='ben[]' id='$i' type='text'/></td>
<td><input name='rel[]' id='$i' type='text'/></td>
</tr>";
}
?>
Código HTML:
Ver original <td><input name="grabar" id="grabar" type="submit" value="Finalizar"></td> <!-- Este es el boton que quiero que al presionarlo me grabe en una base de datos -->
Código PHP:
Ver original<?php
if($grabar!="")
{
$ben = $_POST['ben'];
$rel = $_POST['rel'];
for ($i = 0; $i < $total; $i++) {
$beneficiario = $ben[$i];
$relacion = $rel[$i];
$sql_insert= sprintf("INSERT INTO prueba (curso,ben,rel) VALUES ('$ID_cur')",
GetSQLValueString($_POST['ben'], "text"),
GetSQLValueString($_POST['rel'], "text"));
}
}
?>
Desde ya muchas gracias!!!!!