Código:
Espero me entiendan mi codigo de la pagina es el siguiente esta se llena con un formulario: <?php $variable="if(x==0) { echo 'hola': } else { echo 'Adios'; }" ?>
Código:
<html> <head> <title>Alumno Nuevo</title> <link href='estilos.css' type='text/css' rel='stylesheet' /> </head> <body bgcolor='#A0A0A4'> <?php $Nombres=strtoupper($_POST['Nombre']); $ApellidoP=strtoupper($_POST['Apellidop']); $ApellidoM=strtoupper($_POST['Apellidom']); $Curp=strtoupper($_POST['Curp']); $Direccion=strtoupper($_POST['Direccion']); $edo=strtoupper($_POST['Edo']); $Escuela=strtoupper($_POST['Escuela']); $Sangre=strtoupper($_POST['Sangre']); $NomTutor=strtoupper($_POST['NombreTutor']); $DirTutor=strtoupper($_POST['DireccionTutor']); ?> <div class='cuadro'> <table width='970' border='0'> <tr> <td width='163'><img src='prefeco.gif' width='161' height='151' /></td> <td width='595' valign='top'><center>SUBSECRETARIA DE EDUCACION PUBLICA E INVESTIGACION<br /> DIRECCION GENERAL DE BACHILLERATO <br /> PREPARATORIA FEDERAL POR COOPERACION<br /> ANDRES QUINTANA ROO <br> CLAVE: EMS-242<br /> CHAMILPA MORELOS</p></center></td> <td width='198'><img src='sep2007.gif' width='194' height='129' align='right' /></td> </tr> </table> <center> <h1>Inscripcion de Alumno</h1></center><br /><hr /> <center> <p>Acontinuacion se enlistan los datos del alumno inscrito en la Preparatoria Federal Por Cooperacion Andres Quintana Roo</p> </center><hr /> <?php $archivoNuevo='Alumnos/'.$_POST['Control'].$_FILES['Foto']['name']; if(is_uploaded_file($_FILES['Foto']['tmp_name'])) { copy($_FILES['Foto']['tmp_name'],$archivoNuevo); echo '<img src='.$archivoNuevo.'>'; } else "Error"; echo '<p>FECHA DE REGISTRO: '.date('Y-m-d'); ?><br /> <?php if($_POST['Pago']=='NO') { echo 'PAGO PENDIENTE'; } else { echo 'PAGO REGISTRADO CON EL NUMERO DE FOLIO: '.$_POST['Recibo'].' '; } echo '<br>NUMERO DE CONTROL: '.$_POST['Control']; echo '<br>SEMESTRE: '.$_POST['Semestre']; echo '<br>NOMBRE DEL ALUMNO: '.$Nombres.' '.$ApellidoP.' '.$ApellidoM; echo '<br>FECHA DE NACIMIENTO: '.$_POST['f_date1']; echo '<br>DIRECCION: '.$Direccion; echo '<br>ESTADO: '.$edo; echo '<br>TELEFONO: '.$_POST['Telefono']; if($_POST['Celular']=='') { echo '<br>CELULAR: S/C'; } else { echo '<br>CELULAR: '.$_POST['Celular']; } if($_POST['email']=="") { echo '<br>E-MAIL: '.$_POST['email']; } else { echo '<br>E-MAIL: SIN CORREO'; } echo '<br>TIPO DE SANGRE: '.$_POST['Sangre']; ?> <p><br /> </p> </div> </body> </html>