y ya me he ecansado de buscar dentro del codigo y nada, se que esto es cuando php intepreta dentro de un echo y hay algun tag colgado, pero ya le he revisado y todo esta bien, alguien tendria idea de que podria ser??
De todas formas aqui adjunto parte del codigo justamente donde dice que da el error (justamente en el echo)para ver si podrian echarme una mano, gracias y espero puedan ayudarme.
Código PHP:
$userdetails = mysql_query("SELECT id_user,user_login,user_pass,user_name,user_lastname,user_mail,user_nivel_cultural,access_type FROM bv_user WHERE id_user='".$_GET['id']."'");
$result_userdetails = mysql_fetch_array($userdetails);
$fac_query = mysql_query("SELECT facultad_name FROM bv_facultad");
if ($_GET['action'] == '')
{
if ($_GET['id'] != '')
{
if ($result_userdetails != 0)
{
$nivel_cultural = $result_userdetails['user_nivel_cultural'];
echo"
<table width=\"100%\" border=\"0\" cellspacing=\"0\" bgcolor=\"#6C8DBE\">
<tr align=\"left\" valign=\"top\">
<td height=\"344\">
<table width=\"100%\" border=\"0\" cellspacing=\"0\" bgcolor=\"#FFFFFF\">
<form name=\"form\" method=\"post\" action=\"../clases/user_action.php\" onsubmit=\"window.opener.form.submit(); window.close();\">
<tr>
<td colspan=\"2\" align=\"center\"> </td>
</tr>
<tr>
<td width=\"50%\" align=\"right\" class=\"txt\"> Usuario: </td>
<td width=\"50%\" align=\"left\">
<label>
<input name=\"login\" type=\"text\" id=\"login\" border=\"0\" class=\"input\" value=\"".$result_userdetails['user_login']."\"/>
</label>
</td>
</tr>
<tr>
<td width=\"50%\" align=\"right\" class=\"txt\">
<input name=\"id\" type=\"hidden\" id=\"id\" value=\"".$_GET['id']."\"/>
</td>
<td width=\"50%\" align=\"left\"> </td>
</tr>
<tr>
<td width=\"50%\" align=\"right\" class=\"txt\"> Nombre(s): </td>
<td width=\"50%\" align=\"left\"><input name=\"nombre\" type=\"text\" id=\"nombre\" class=\"input\" value=\"".$result_userdetails['user_name']."\"/></td>
</tr>
<tr>
<td width=\"50%\" align=\"right\" class=\"txt\"> Apellidos: </td>
<td width=\"50%\" align=\"left\"><input name=\"apellidos\" type=\"text\" id=\"apellidos\" class=\"input\" value=\"".$result_userdetails['user_lastname']."\"/></td>
</tr>
<tr>
<td width=\"50%\" align=\"right\" class=\"txt\"> Correo Electrónico: </td>
<td width=\"50%\" align=\"left\"><input name=\"email\" type=\"text\" id=\"email\" class=\"input\" size=\"30\" value=\"".$result_userdetails['user_mail']."\"/></td>
</tr>
<tr>
<td align=\"right\" class=\"txt\">Nivel Cultural: </td>
<td align=\"left\">
<select name=\"nivel_cultural\" class=\"input\" id=\"nivel_cultural\">
<option selected=\"selected\">".$nivel_cultural."</option>
<option>Estudiante</option>
<option>Profesional</option>
</select>
</td>
</tr>
";