bueno antes, de recomendacion nunca pongas tu username y password cuando postees en el foro, y ps no veo
Código PHP:
<?php
$connect= mysql_connect ("*****", "*****", "*****")
or die ("Problema 1 : No se pudo conectar con la base de datos ".mysql_error());
mysql_select_db("a1968458_cManage",$connect) or die ("Problemas al seleccionar la base de datos".mysql_error());
$query= "select newID, title from news";
$news=mysql_query($query, $connect) or die ("Problema al acceder a los datos ".mysql_error());
echo "<table width='200'>";
while ($reg = mysql_fetch_array($news))
{
echo '<tr><td><input type="checkbox" value="'.$reg['newID'].'" /></td><td>'.stripslashes($reg['title']).'</td>';
}
echo "</table>";
mysql_close($connect);
?>
suerte