RE: [PHP] Newibie: fetch Obj question - data not showing.

2009-04-05 Thread MEM
>On Behalf Of 9el > > >On Sun, Apr 5, 2009 at 10:08 PM, MEM < tal...@gmail.com> wrote: >Hello, > >1) >Ok, with mysqli, to fetch data from a database to a select drop down list, we would do something like this >right? : >$result = $mysqli->query("SELECT id_cliente, nome

Re: [PHP] Newibie: fetch Obj question - data not showing.

2009-04-05 Thread 9el
> > Because I’ve never debug on my entire life of programming (2 months). :D > > In the meanwhile, I will search how to debug using print_r and var_dump. > > ROFL ha hahaha echo '', print_r($array),''; // here pre is used to keep the way its outputed in HTML echo '', var_dump($array),'

RE: [PHP] Newibie: fetch Obj question - data not showing.

2009-04-05 Thread MEM
>why did you forget to use the debugging functions : > >print_r() >and var_dump() for the results? > >So, you'll get some idea beforehand of posting the problem here. I am looking at the code in a hurry so I cant >help you much right away. > >Lenin > > www.twitter.c

Re: [PHP] Newibie: fetch Obj question - data not showing.

2009-04-05 Thread 9el
On Sun, Apr 5, 2009 at 10:08 PM, MEM wrote: > Hello, > > 1) > Ok, with mysqli, to fetch data from a database to a select drop down list, > we would do something like this right? : > $result = $mysqli->query("SELECT id_cliente, nome_cliente FROM cliente"); > echo ""; > > while($row = mysqli_fetch

[PHP] Newibie: fetch Obj question - data not showing.

2009-04-05 Thread MEM
Hello, 1) Ok, with mysqli, to fetch data from a database to a select drop down list, we would do something like this right? : query("SELECT id_cliente, nome_cliente FROM cliente"); echo ""; while($row = mysqli_fetch_assoc($result)) { echo "".$row['nome_cliente'].""; } echo ""