ahorro.php
Código PHP:
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Ahorro de Socios</title>
</head>
<body>
<?php
include"conexion.php";
include"conector.php";
error_reporting(E_ALL ^ E_NOTICE);
$cuenta = $_POST['cuenta'];
$cooperativa = $_POST['cooperativa'];
$fecha_expiracion = $_POST['fecha_expiracion'];
$fecha_pago = $_POST['fecha_pago'];
$deposito = $_POST['deposito'];
$retiro = $_POST['retiro'];
$id_registro = $_POST['id_registro'];
mysql_query("INSERT INTO ahorro (cuenta, cooperativa, fecha_expiracion, fecha_pago, deposito, retiro, id_registro) VALUES ('$cuenta','$cooperativa','$fecha_expiracion','$fecha_pago','$deposito','$retiro','$id_registro')" ,$conectar);
$consulta=('SELECT id_registro, nombre, apellido FROM registro ORDER BY nombre asc');
$result=mysql_query($consulta);
?>