Estoy al borde de darme un tiro
![lloron](http://static.forosdelweb.com/fdwtheme/images/smilies/chillando.png)
.....cambie mi codigo :
<!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=iso-8859-1" />
<title>Documento sin título</title>
</head>
<?php
$link=mysql_connect("localhost","root","root");
$database="negocio";
mysql_select_db($database);
$resultado=mysql_query("select fab from switches");
print "<table width=200 border=0>\n";
while($get_info=mysql_fetch_assoc($resultado))
{
/*
print("<td><input type=\"checkbox\" value=\"" . $get_info['fab'] . "\" name=\"check[]\"></td>\n");
*/
//echo '<input type="checkbox" name="naam" value="'.$get_info['fab'].'">'.'<br />';
?>
<input type="checkbox" value='<?= $get_info["fab"]; ?>' align="BASELINE" name="ch[]" />
<br>
<?
}
print "</table>\n";
mysql_free_result($resultado);
?>
</html>
Ese es mi codigo solo veo los 4 checkbox, porque tengo 4 registros en la tabla, pero no logro ver el texto o el valor que le asigna......
Help me
![lloron](http://static.forosdelweb.com/fdwtheme/images/smilies/chillando.png)
...ya desintale el appserver, y lo instale de nuevo y me sigue dando lo mismo, lo mas extraño es que uso el PHP Designer y en el panel donde estan las tres etiquetas MESSAGE,CODE,HTML, le doy en la de CODE y si se ve el codigo con los valores asignados, le doy en HTML y no se ven....alguien me podria orientar que esta pasando...gracias