Ver Mensaje Individual
  #6 (permalink)  
Antiguo 26/05/2009, 17:21
papay0
 
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&iacute;tulo</title>
</head>

<body>
</body>
</html>