Se creara una base de datos en MySql con las tablas siguientes
Se trabajara con dos tablas la de clientes y equipos.
Tabla Equipos
Tabla Clientes
En primer lugar crearemos nuestra página ingreso a clientes.
La llamaremos: ingreso_equipos.php
Nota: tendremos 4 diferentes conexiones dos estarán en un archivo o pagina independiente la una se llamara, conex.php y la otra conexión.php además aremos conexiones independiente en el código. Para demostrar las diferentes formas de crear una conexión hacia nuestra base de datos.
En conex.php el código es:
<?php
function Conectarse()
{
if (!($link=mysql_connect("localhost","root","root")))
{
echo "Error conectando a la base de datos.";
exit();
}
if (!mysql_select_db("servicio_ocacional",$link))
{
echo "Error seleccionando la base de datos.";
exit();
}
return $link;
}
?>
Pagina conexión.php código:
<?php
$conexion = mysql_connect('localhost','root','root');
mysql_select_db('servicio_ocacional',$conexion);
?>
Ahora pondré todo el código de nuestra página ingreso_equipos.php, en el código pondré comentarios de que hace cada función o determinado código.
<!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=utf-8" />
<title>Ingrso Equipos</title>
<!--Este código a continuación es Estilos CCS este código es para dar nuestros colores es decir la parte vistosa de nuestra página en este caso lo hemos hecho en cada página pero es recomendable hacerlo en una página diferente y luego llamarla.-->
<style type="text/css">
<!--
body {
background-color: #B9BCE1;
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
body,td,th {
color: #000;
font-family: Arial, Helvetica, sans-serif;
font-size: 13px;
}
a:link {
color: #FFF;
text-decoration: none;
}
a:visited {
text-decoration: none;
color: #FFF;
}
a:hover {
text-decoration: none;
color: #F90;
}
a:active {
text-decoration: none;
color: #FFF;
}
.titulo {
color: #5960AC;
}
.pie {
color: #B9BCE1;
}
-->
</style>
<!—ahora este es código javascript el cual utilizaremos para validar nuestros datos de cada text este trabaja en el cliente es decir no necesita enviar al servidor y volver a cargar la pagina para procesar su código lo hace desde el cliente que sería nuestro navegador, creamos funciones que se los crea antes del body o cuerpo de la pagina para luego llamarlo cuando se los necesite.
<script language="javascript">
function check_campos( form )
{
var id = form.id_equipo.value;
var equipo = form.equipo.value;
var potencia = form.potencia.value;
if ( id == 0 )
{
alert("Llene todos los campos id equipo");
return false;
}
if (equipo == 0)
{
alert( "Llene todos los campos \r Nombre de equipo" );
return false;
}
if (potencia == 0)
{
alert("Llene todos los campos \r Potencia");
return false;
}
}
</script>
</head>
<body>
<table width="100%" border="0" cellpadding="3" cellspacing="3">
<tr>
<td><p> </p>
<table width="900" border="0" align="center" style="border:#000 solid 1px">
<tr>
<td><img src="../imagenes/titulo.jpg" width="985" height="80" /></td>
</tr>
<tr>
<td><table width="100%" border="0" cellspacing="1" cellpadding="3" align="center">
<tr align="center">
<td align="center" bgcolor="#5960AC"><a href="../sistema_menu.php"> home</a></td>
<td align="center" bgcolor="#5960AC" ><a href="ingreso_equipos.php">ingreso equipos</a></td>
<td align="center" bgcolor="#5960AC"><a href="modificacion_equipos.php">modificar equipo</a></td>
<td align="center" bgcolor="#5960AC"><a href="eliminacion_equipos.php">eliminar equipo</a></td>
<td bgcolor="#5960AC"><a href="listado_equipos.php">listado equipos</a></td>
<td bgcolor="#5960AC"><a href="../sesion/salir_1.php">salir</a></td>
</tr>
</table>
</td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td>
<table width="100%" border="0" align="center" cellpadding="2" cellspacing="2" style=" background:#F2F6F6;">
<tr>
<td style="font-size: 20px; color: #5960AC;" align="left">Ingreso Equipos</td>
</tr>
</table>
</tr>
<tr>
<td>
</td>
</tr>
<tr>
<td><form id="form1" name="form1" method="post" action="ingreso_equipos1.php" >
<table width="39%" border="0" align="center" cellpadding="3" cellspacing="3">
<tr>
<td align="right" style="font-size: 13px; color: #5960AC;font-weight:bold">Codigo </td>
<td><input type="text" name="id_equipo" size="1" maxlength="3" style="font-size: 13px; color: #5960AC;" value="<?php
//aquí hacemos la conexión y buscamos en nuestra base de datos en la tabla equipos en el campo //id_equipo el valor más alto y lo sumamos 1 para así asignarle el id y no se pueda repetir.
include('../conex.php');
$link=Conectarse();
$maximo=mysql_query('SELECT MAX(id_equipo) as maximo FROM equipos',$link);
$row = mysql_fetch_array($maximo);
$numero = $row['maximo'];
$numero++;
echo $numero;
?>" readonly="readonly" /></td>
</tr>
<tr>
<td align="right" style="font-size: 13px; color: #5960AC;font-weight:bold">Equipo</td>
<td><input type="text" name="equipo" maxlength="30" size="29" style="font-size: 13px; color: #5960AC;"/></td>
</tr>
<tr>
<td align="right" style="font-size: 13px; color: #5960AC;font-weight:bold">Potencia</td>
<td><input type="text" name="potencia" size="4" style="font-size: 13px; color: #5960AC;"/></td>
</tr>
<tr>
<td> </td>
<td><input type="submit" value="Guardar" onclick="return check_campos(this.form)" />
<input type="reset" value="borrar" /></td>
</tr>
</table>
</form></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td align="center" bgcolor="#5960AC" class="pie">Copyright 2010 - Benito Jimenez</td>
</tr>
</table></td>
</tr>
</table>
</body>
</html>
Enviaremos a otra pagina para que realice el ingreso de nuestros datos a la base de datos en el <form id="form1" name="form1" method="post" action="ingreso_equipos1.php" > laccion le decimos que vaya a la página ingreso_equipos1.php donde está el siguiente código que realiza el ingreso y envía al servido.
Ingreso_equipos1.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=utf-8" />
<title>Documento sin título</title>
</head>
<body>
<?php
$conexion=mysql_connect("localhost","root","root")
or die("Problemas en la conexion");
mysql_select_db("servicio_ocacional",$conexion) or
die("Problemas en la seleccion de la base de datos");
{
mysql_query("insert into equipos (id_equipo,equipo,potencia) values
('$_REQUEST[id_equipo]','$_REQUEST[equipo]','$_REQUEST[potencia]')", $conexion) or die("EL Id del equipo ya existe ".mysql_error());
}
mysql_close($conexion);
echo "<h1> El Equipo fue creado.</h1>";
?>
<meta http-equiv="Refresh" content="3;url=ingreso_equipos.php">
</body>
</html>
Ahora pondré las demás pagina solo hay que copiarlas y pegarlas en un editor puede ser en dreamweaver este nos ayuda mucho para iniciar con nuestros códigos nos hasta que ya seamos expertos o nos aprendamos la etiquetas fundamentales de HTML.
Por hoy pondré solo los código posteriormente lo comentare.
Igual pondré todo el archivo donde lo subí clic aquí para descargar.
Eliminación_equipos.php
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
<style type="text/css">
<!--
body {
background-color: #B9BCE1;
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
body,td,th {
color: #000;
font-family: Arial, Helvetica, sans-serif;
font-size: 13px;
}
a:link {
color: #FFF;
text-decoration: none;
}
a:visited {
text-decoration: none;
color: #FFF;
}
a:hover {
text-decoration: none;
color: #F90;
}
a:active {
text-decoration: none;
color: #FFF;
}
.titulo {
color: #5960AC;
}
.pie {
color: #B9BCE1;
}
-->
</style></head>
<body>
<table width="100%" border="0" height="100%">
<tr>
<td><table width="900" border="0" align="center" style="border:#000 solid 1px">
<tr>
<td><img src="../imagenes/titulo.jpg" width="985" height="80" /></td>
</tr>
<tr>
<td><table width="100%" border="0" cellpadding="3" cellspacing="1">
<tr>
<td align="center" bgcolor="#5960AC"><a href="../sistema_menu.php"> home</a></td>
<td align="center" bgcolor="#5960AC" ><a href="ingreso_equipos.php">ingreso equipos</a></td>
<td align="center" bgcolor="#5960AC"><a href="modificacion_equipos.php">modificar equipo</a></td>
<td align="center" bgcolor="#5960AC"><a href="eliminacion_equipos.php">eliminar equipo</a></td>
<td bgcolor="#5960AC"><a href="listado_equipos.php">listado equipos</a></td>
<td bgcolor="#5960AC"><a href="../sesion/salir_1.php">salir</a></td> </tr>
</table></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td>
<table width="95%" border="0" align="center" cellpadding="2" cellspacing="2" style=" background:#F2F6F6;">
<tr>
<td style="font-size: 20px; color: #5960AC;" align="left">Borrar Equiupos</td>
</tr>
</table>
</td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td>
<p>
<?php
include("../conex.php");
$link=Conectarse();
$result=mysql_query("select * from equipos",$link);
?>
<table width="95%" border="0" align="center" cellpadding="2" cellspacing="2">
<tr>
<td align="center" bgcolor="#FF9900" style="font-size: 13px; color: #5960AC;font-weight:bold"><strong>Id Equipo</strong></td>
<td align="center" bgcolor="#FF9900" style="font-size: 13px; color: #5960AC;font-weight:bold"><strong>Equipo</strong></td>
<td align="center" bgcolor="#FF9900" style="font-size: 13px; color: #5960AC;font-weight:bold"><strong>Potencia</strong></td>
<td align="center" bgcolor="#FF9900" style="font-size: 13px; color: #5960AC;font-weight:bold"><strong>Eliminar</strong></td>
</tr>
<?php
while($row = mysql_fetch_array($result)) {
printf("<tr>
<td bgcolor='#E0E0E0' align ='center' style='font-size: 13px; color: #5960AC;'> %s </td>
<td bgcolor='#E0E0E0' align='center' style='font-size: 13px; color: #5960AC;'> %s </td>
<td bgcolor='#E0E0E0' align='center' style='font-size: 13px; color: #5960AC;'> %s </td>
<td bgcolor='#E0E0E0' align='center'><a href=\"elimina_equipo.php?id=%d\" style='background:#5960AC'>Eliminar</a></td>
</tr>",$row["id_equipo"] , $row["equipo"],$row["potencia"],$row["id_equipo"]);
}
mysql_free_result($result);
mysql_close($link);
?>
</table>
</p>
<p> </p></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td align="center" bgcolor="#5960AC" class="pie">Copyright 2010 - Benito Jimenez</td>
</tr>
</table></td>
</tr>
</table>
</body>
</html>
Elimina_equipo.php
<?php
include("../conex.php");
$link=Conectarse();
$id=$_GET['id'];
mysql_query("delete from equipos where id_equipo = $id",$link);
header("Location: eliminacion_equipos.php");
?>
Listado_equipos.php
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
<style type="text/css">
<!--
body {
background-color: #B9BCE1;
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
body,td,th {
color: #000;
font-family: Arial, Helvetica, sans-serif;
font-size: 13px;
}
a:link {
color: #FFF;
text-decoration: none;
}
a:visited {
text-decoration: none;
color: #FFF;
}
a:hover {
text-decoration: none;
color: #F90;
}
a:active {
text-decoration: none;
color: #FFF;
}
.titulo {
color: #5960AC;
}
.pie {
color: #B9BCE1;
}
-->
</style></head>
<body>
<table width="100%" border="0" height="100%">
<tr>
<td><table width="900" border="0" align="center" style="border:#000 solid 1px">
<tr>
<td><img src="../imagenes/titulo.jpg" width="985" height="80" /></td>
</tr>
<tr>
<td><table width="100%" border="0" cellpadding="3" cellspacing="1">
<tr>
<td align="center" bgcolor="#5960AC"><a href="../sistema_menu.php"> home</a></td>
<td align="center" bgcolor="#5960AC" ><a href="ingreso_equipos.php">ingreso equipos</a></td>
<td align="center" bgcolor="#5960AC"><a href="modificacion_equipos.php">modificar equipo</a></td>
<td align="center" bgcolor="#5960AC"><a href="eliminacion_equipos.php">eliminar equipo</a></td>
<td bgcolor="#5960AC"><a href="listado_equipos.php">listado equipos</a></td>
<td bgcolor="#5960AC" align="center"><a href="../sesion/salir_1.php">salir</a></td>
</tr>
</table></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td>
<table width="95%" border="0" align="center" cellpadding="2" cellspacing="2" style=" background:#F2F6F6;">
<tr>
<td style="font-size: 20px; color: #5960AC;" align="left">Listado de Equipos</td>
</tr>
</table>
</td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td>
<p>
<?php
include('../conexion.php');
if($conexion!=true)
{
echo "eroor en conectarse al servidor de la base de datos";
}
else
{
$sel = mysql_query("select * from equipos order by equipo ASC;");
$filas = mysql_num_rows($sel);
if($filas == 0)
{
echo "No existen registros por el momento";
}
else
{
?>
<table width="95%" border="0" align="center" cellpadding="2" cellspacing="2">
<tr>
<td align="center" bgcolor="#FF9900" style="font-size: 13px; color: #5960AC;font-weight:bold"><strong>Id Equipo</strong></td>
<td align="center" bgcolor="#FF9900" style="font-size: 13px; color: #5960AC;font-weight:bold"><strong>Equipo</strong></td>
<td align="center" bgcolor="#FF9900" style="font-size: 13px; color: #5960AC;font-weight:bold"><strong>Potencia</strong></td>
</tr>
<?php
for($i=0;$i<$filas; $i++)
{
?>
<tr>
<td bgcolor="#E0E0E0" align="center" style="font-size: 13px; color: #5960AC;font-weight:bold"><?php echo mysql_result($sel,$i,'id_equipo'); ?></td>
<td bgcolor="#E0E0E0" style="font-size: 13px; color: #5960AC;font-weight:bold"><?php echo mysql_result($sel,$i,'equipo'); ?></td>
<td bgcolor="#E0E0E0" style="font-size: 13px; color: #5960AC;font-weight:bold"><?php echo mysql_result($sel,$i,'potencia'); ?></td>
</tr>
<?php
}
?>
</table>
<?
}
}
?>
</p>
<p> </p></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td align="center" bgcolor="#5960AC" class="pie">Copyright 2010 - Benito Jimenez</td>
</tr>
</table></td>
</tr>
</table>
</body>
</html>
modificacion_equipos.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=utf-8" />
<title>Documento sin título</title>
<style type="text/css">
<!--
body {
background-color: #B9BCE1;
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
body,td,th {
color: #000;
font-family: Arial, Helvetica, sans-serif;
font-size: 13px;
}
a:link {
color: #FFF;
text-decoration: none;
}
a:visited {
text-decoration: none;
color: #FFF;
}
a:hover {
text-decoration: none;
color: #F90;
}
a:active {
text-decoration: none;
color: #FFF;
}
.titulo {
color: #5960AC;
}
.pie {
color: #B9BCE1;
}
-->
</style>
</head>
<body>
<table width="100%" border="0" cellpadding="3" cellspacing="3">
<tr>
<td><p> </p>
<table width="900" border="0" align="center" style="border:#000 solid 1px">
<tr>
<td><img src="../imagenes/titulo.jpg" width="985" height="80" /></td>
</tr>
<tr>
<td><table width="100%" border="0" cellspacing="1" cellpadding="3" align="center">
<tr align="center">
<td align="center" bgcolor="#5960AC"><a href="../sistema_menu.php"> home</a></td>
<td align="center" bgcolor="#5960AC" ><a href="ingreso_equipos.php">ingreso equipos</a></td>
<td align="center" bgcolor="#5960AC"><a href="modificacion_equipos.php">modificar equipo</a></td>
<td align="center" bgcolor="#5960AC"><a href="eliminacion_equipos.php">eliminar equipo</a></td>
<td bgcolor="#5960AC"><a href="listado_equipos.php">listado equipos</a></td>
<td bgcolor="#5960AC"><a href="../sesion/salir_1.php">salir</a></td>
</tr>
</table>
</td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td>
<table width="100%" border="0" align="center" cellpadding="2" cellspacing="2" style=" background:#F2F6F6;">
<tr>
<td style="font-size: 20px; color: #5960AC;" align="left">Ingrese Codigo del Equipo</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
</td>
</tr>
<tr>
<td><form id="form1" name="form1" method="post" action="modificar_equipos.php" >
<table width="39%" border="0" align="center" cellpadding="3" cellspacing="3">
<tr>
<td align="right" style="font-size: 13px; color: #5960AC;font-weight:bold">Codigo </td>
<td><input type="text" name="id_equipo" size="2" maxlength="3" style="font-size: 13px; color: #5960AC;font-weight:bold"/></td>
</tr>
<tr>
<td> </td>
<td><input type="submit" value="Buscar" />
<input type="reset" value="borrar" /></td>
</tr>
</table>
</form></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td align="center" bgcolor="#5960AC" class="pie">Copyright 2010 - Benito Jimenez</td>
</tr>
</table></td>
</tr>
</table>
</body>
</html>
Modificado_equipo.php
<?php
$conexion=mysql_connect("localhost","root","root") or
die("Problemas en la conexion");
mysql_select_db("servicio_ocacional",$conexion) or
die("Problemas en la selección de la base de datos");
$registros=mysql_query("update equipos
set id_equipo='$_REQUEST[id_equipo]', equipo='$_REQUEST[equipo]', potencia='$_REQUEST[potencia]'
where id_equipo='$_REQUEST[id_equipo]'",$conexion) or
die("Problemas en el select:".mysql_error());
echo "El mail fue modificado con exito";
?>
<meta http-equiv="Refresh" content="2;url=modificacion_equipos.php">
Modificar_equipos.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=utf-8" />
<title>Modificar equipo</title>
<style type="text/css">
<!--
body {
background-color: #B9BCE1;
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
body,td,th {
color: #000;
font-family: Arial, Helvetica, sans-serif;
font-size: 13px;
}
a:link {
color: #FFF;
text-decoration: none;
}
a:visited {
text-decoration: none;
color: #FFF;
}
a:hover {
text-decoration: none;
color: #F90;
}
a:active {
text-decoration: none;
color: #FFF;
}
.titulo {
color: #5960AC;
}
.pie {
color: #B9BCE1;
}
-->
</style>
</head>
<body>
<table width="100%" border="0" cellpadding="3" cellspacing="3">
<tr>
<td><p> </p>
<table width="900" border="0" align="center" style="border:#000 solid 1px">
<tr>
<td><img src="../imagenes/titulo.jpg" width="985" height="80" /></td>
</tr>
<tr>
<td><table width="100%" border="0" cellspacing="1" cellpadding="3" align="center">
<tr align="center">
<td align="center" bgcolor="#5960AC"><a href="../sistema_menu.php"> home</a></td>
<td align="center" bgcolor="#5960AC" ><a href="ingreso_equipos.php">ingreso equipos</a></td>
<td align="center" bgcolor="#5960AC"><a href="modificacion_equipos.php">modificar equipo</a></td>
<td align="center" bgcolor="#5960AC"><a href="eliminacion_equipos.php">eliminar equipo</a></td>
<td bgcolor="#5960AC"><a href="listado_equipos.php">listado equipos</a></td>
<td bgcolor="#5960AC"><a href="../sesion/salir_1.php">salir</a></td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
</td>
</tr>
<tr>
<td>
<table width="100%" border="0" align="center" cellpadding="2" cellspacing="2" style=" background:#F2F6F6;">
<tr>
<td style="font-size: 20px; color: #5960AC;" align="left">Modificar Equipo</td>
</tr>
</table>
</tr>
<tr>
<td>
</td>
</tr>
<tr>
<td>
<?php
$conexion=mysql_connect("localhost","root","root") or
die("Problemas en la conexion");
mysql_select_db("servicio_ocacional",$conexion) or
die("Problemas en la selección de la base de datos");
$registros=mysql_query("select * from equipos where id_equipo='$_REQUEST[id_equipo]'",$conexion) or
die("Problemas en el select:".mysql_error());
if ($reg=mysql_fetch_array($registros))
{
?>
<form id="form1" name="form1" method="post" action="modificado_equipo.php" >
<table width="39%" border="0" align="center" cellpadding="3" cellspacing="3">
<tr>
<td align="right" style="font-size: 13px; color: #5960AC;font-weight:bold">Codigo </td>
<td><input name="id_equipo" type="text" size="3" maxlength="3" value="<?php echo $reg['id_equipo']?> " style="font-size: 13px; color: #5960AC;" /><input type="hidden" name="id_equipo_viejo" value="<?php echo $reg['id_equipo']?> " /></td>
</tr>
<tr>
<td align="right" style="font-size: 13px; color: #5960AC;font-weight:bold">Equipo</td>
<td><input type="text" maxlength="29" size="29" name="equipo" value="<?php echo $reg['equipo']?> " style="font-size: 13px; color: #5960AC;"/><input type="hidden" name="equipo_viejo" value="<?php echo $reg['equipo']?> "/></td>
</tr>
<tr>
<td align="right" style="font-size: 13px; color: #5960AC;font-weight:bold">Potencia</td>
<td><input type="text" name="potencia" size="4" maxlength="6" value="<?php echo $reg['potencia']?> " style="font-size: 13px; color: #5960AC;" /> <input type="hidden" name="potencia_vieja" value="<?php echo $reg['potencia']?> " /></td>
</tr>
<tr>
<td> </td>
<td><input type="submit" value="Modificar" />
<input type="reset" value="borrar" /></td>
</tr>
</table>
</form><?php
}
else
echo "No existe equipo con dicho id"."<meta http-equiv='Refresh' content='2;url=modificacion_equipos.php'> ";
?>
<a href="modificacion_equipos.php">atras</a>
</td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td align="center" bgcolor="#5960AC" class="pie">Copyright 2010 - Benito Jimenez</td>
</tr>
</table></td>
</tr>
</table>
</body>
</html>


