Cita:
Iniciado por jartaud Y porqué estas mandando ese objeto en formato json?
Puedes leer ese
tutorial para avanzar.
gracias por el tuto, me sirvio mucho
pongo el codigo por si a alguien le llegara a servir
Código PHP:
<?php
include_once 'lib.php';
$conexion= mysql_connect($dbhost, $dbuser, $dbpassword);
mysql_select_db($database, $conexion);
$result = mysql_query("SELECT id_stock, codigo, descrip, pre_min, pre_may FROM stock where activo = '1'", $conexion);
echo"<table border='2'>
<tr>
<th>ID</th>
<th>Codigo</th>
<th>Descrip</th>
<th>Prec.Min</th>
<th>Prec.May</th>
</tr>";
$i=0;
while($row = mysql_fetch_array($result)){
echo "<tr>
<td>$row[id_stock]</td>
<td>$row[codigo]</td>
<td>$row[descrip]</td>
<td>$row[pre_min]</td>
<td>$row[pre_may]</td>
</tr>";
$i++;
}
echo "</table>";