Re: [PHP] What could I be doing wrong here

2001-03-26 Thread YoBro
Thanks everybody for all your help. It goes now. ""YoBro"" <[EMAIL PROTECTED]> wrote in message news:99oh2o$f95$[EMAIL PROTECTED]... : I can't figure out why this doesn't work. Rather than echo $myrow[0] which : works, I want to use the feild name. Like $myrow[make] to make reading the : code e

Re: [PHP] What could I be doing wrong here

2001-03-26 Thread CC Zona
In article <99oh2o$f95$[EMAIL PROTECTED]>, [EMAIL PROTECTED] ("YoBro") wrote: > I can't figure out why this doesn't work. Rather than echo $myrow[0] which > works, I want to use the feild name. Like $myrow[make] to make reading the > code easier. IS this possible? > > Here is some code: > > $d

Re: [PHP] What could I be doing wrong here

2001-03-26 Thread Pierre-Yves Lemaire
And like this? echo $myrow["id"] .""; //Usually $myrow[0] etc py At 10:53 AM 3/27/01 +1200, you wrote: >I can't figure out why this doesn't work. Rather than echo $myrow[0] which >works, I want to use the feild name. Like $myrow[make] to make reading the >code easier. IS this possible? > >H