Código PHP:
Ver original
............ { echo" <tr class='spec'> <td align=center><input type='checkbox' name='select[]' value='".$fila['email']."'></form></td> <td align=center><a href='info.php?email_enviado=".$fila['email_enviado']."' target='_blank'>".$fila['personalID']."</a></td> <td align=center>".$fila['fecha_registro']."</td> <td width='220px'>".$fila['first_name']." ".$fila['last_name']."<br />".$fila['phone']."<br />".$fila['email']."<span class='enviado'>".$fila['enviado']."</span><span class='recordatorio'>".$fila['recordatorio']."</span> </td> ................
la linea 7 envía la variable a la pagina info.php
Código PHP:
Ver original
........ //3. Tomar los campos provenientes $personalID = $_GET['personalID']; $email_enviado = $_GET['email_enviado']; if (!$consulta) { } echo " <!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.1//EN' 'http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd'> <html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en'> <head> <title>Send Email</title> <link rel='stylesheet' type='text/css' href='css/estilo.css' /> </head> <body> ".$fila['email_enviado']." </body> </html> "; } //4. Cerrar conexión a la Base de Datos ?> ........
aquí debería mostrar lo que contiene esa sentencia, pero al abrir la pagina nueva me da este mensaje:
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, [email protected] and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
Apache Server at dash.transportedeautos.com Port 80
lo peor es que tengo mas archivos similares y no tengo ningún problema. Ya le he dado todos los privilegios (777) y nada.
Alguna idea por favor?
Gracais