Comunidad de programadores, les escribo para realizarles una consulta, pues actualmente tengo en un hosting llamado 260mb.net una aplicacion web pero uno de los modulos de la misma al acceder no carga pues da error http 500 error interno del servidor, otros modulos sin cargan sin ninguna novedad, por ende me pueden hacer el favor y me revisan este código y me brindan información si realmente presenta algún error de programación en php o etiquetas html5.
Gracias.
Código PHP:
Ver original
<!DOCTYPE HTML> <html> <head> <meta http-equiv="content-type" content="text/html" /> <meta name="author" content="gencyolcu" /> <link rel="stylesheet" href="buttons.css" type="text/css" media="screen" /> <title>Registro de Clientes</title> <!-- <style type="text/css"> @import url("style.css"); </style> --> </head> <!--<body background="bgimage.jpg"> --> <body background="img/bg_top_img_3.jpg"> <?php require('conexion.php'); $query ="select * from clientes" ; $resultado=$mysqli->query($query); ?> <table border="1" cellspacing="0"> <TR> <TH>Fecha</TH> <TH>Usuario</TH> <TD><input name="Usuario" value="<?php echo $_SESSION['usuario'];?>" READONLY /></TD> <TH>Ayuda en linea</TH> <!--<td style="text-align:right"><body><a href ="helpregistro.html" class = "button blue" value="Ayuda">Ayuda</a></br> --> <!--echo "<a href='tuArchivo.php?variablePorURL=".$variablePorURL."' target='tuArchivo' onclick=\"window.open(this.href, this.target, ' width=1000, height=800, menubar=no');return false;\"> Contrato </a>"; --> <td style="text-align:right"><a href="ayudaenlinea/formularioregistroclientes/helpregistro.html" class="button blue" target="_blank" onclick="window.open(this.href,this.target,'width=400,height=500,top=200,left=200,toolbar=no,location=no,status=no,menubar=no');return false;">Ayuda</a> </table> <center><h2><b>REGISTRO DE CLIENTES</b></h2></th> <br> <form action="guardarcl.php" method="POST"> <center><table border="1"> <tr> <td>FECHA</td> <tr> <td>No DOCUMENTO</td> <td><input type="text" name="documento" required </td> <tr> <td>NOMBRE</td> <td><input type="text" name="nombre" required </td> <tr> <td>APELLIDO</td> <td><input type="text" name="apellido" required</td> <tr> <td>TELEFONO</td> <td><input type="text" name="telefono" required</td> <tr> <td>E-MAIL</td> <td><input type="text" name="email" required</td> </tr> </table> <input type="submit" class="button blue" value="Registrar Cliente"> <a href="contenido.php" class="button red">Menu Principal</a> </form> <br><br> <center> <table id="gradient-style" summary="Meeting Results"> <thead> <tr> <th scope="col">FECHA</th> <th scope="col">No DOCUMENTO</th> <th scope="col">NOMBRE</th> <th scope="col">APELLIDO</th> <th scope="col">TELEFONO</th> <th scope="col">E-MAIL</th> </tr> </thead> <tbody> <?php while($row=$resultado->fetch_assoc()){ ?> <tr> <td><?php echo $row['fecha'];?></td> <td><?php echo $row['documento'];?></td> <td><?php echo $row['nombre'];?></td> <td><?php echo $row['apellido'];?></td> <td><?php echo $row['telefono'];?></td> <td><?php echo $row['email'];?></td> <a href="modificar.php?codigo=<?php echo $row['codigo'];?>">Modificar</a> <?php } ?> </tbody> </table> </body> </html>