Noviembre 8 de 2017
Ejercicios de los manuales 33 y 34 Se realizó una evaluación Entrega de notas EJERCICIOS: 1. Ejercicio con imágenes: index.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>Untitled Document</title> </head> <?php $mensaje = isset($_GET['mensaje'])?$_GET['mensaje']:""; if ($mensaje != ""){ ?> <script type="text/javascript">alert("<?=$mensaje;?>");</script> <?php }?> <body> <form id="form1" name="form1" method="post" action="guardar.php"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> ...