Código PHP:
Ver original
<?php include_once('conexion.php'); conectarse(); ############################# CONSULTO LAS CEDULAS ENCONTRADAS DE LOS AHORRISTAS############################################# $sql = mysql_query("SELECT DISTINCT ced_ahorrista from ahorros") or die("Problemas en el select:".mysql_error()); $cedula[] = $array['ced_ahorrista']; mysql_query("insert into relacion_ahorros (cod_relacion,ced_ahorrista,saldo_ahorrista,mes_ahorrista,ano_ahorrista) values ('".mysql_real_escape_string('')."','".mysql_real_escape_string($resultado[$i])."','".mysql_real_escape_string('2500.00')."','".mysql_real_escape_string('08')."','".mysql_real_escape_string('2013')."')") or die(mysql_error()); } } ?>