26/05/2009, 17:21
|
| | Fecha de Ingreso: abril-2009
Mensajes: 83
Antigüedad: 15 años, 9 meses Puntos: 2 | |
Respuesta: Ayuda con llenar Array Este es todo el codigo:
<?
include('../Conectar.php');
$link=Conectarse('webpmm');
?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script>
var desc = new Array(<?PHP
$result=mysql_query("SELECT id,descripcion FROM catalogodescripcion",$link);
$totReg=mysql_num_rows($result);
while($row = mysql_fetch_array($result)){
echo ($con++ < $totReg ? "," : "" ) . "'". str_replace("\n","" ,$row[1]) . "'";
}
?>);
</script>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Documento sin título</title>
</head>
<body>
</body>
</html> |