[PHP] RE: SOLVED! [PHP] Echoing a value

2004-07-12 Thread Ed Curtis
On Mon, 12 Jul 2004, Pablo Gosse wrote: > Try changing: > > fputs($ap, $row['users.name']); > fputs($ap, $row['users.company']); > > To: > > fputs($ap, $row['name']); > fputs($ap, $row['company']); > > That should do the trick. > > Cheers, > Pablo > That did the trick! I knew it was something sim

Re: [PHP] Echoing a value

2004-07-12 Thread Jason Wong
On Monday 12 July 2004 22:58, Ed Curtis wrote: > I'm having some trouble echoing a value to a file that is being pulled > from a MySQL database. I've included my code below I'm sure it's something > really simple but I'm not seeing it. $row['users.name'] and > $row['users.company'] echo nothing whi

RE: [PHP] Echoing a value

2004-07-12 Thread Pablo Gosse
Ed Curtis wrote: > I'm having some trouble echoing a value to a file that is being > pulled from a MySQL database. I've included my code below I'm sure > it's something really simple but I'm not seeing it. > $row['users.name'] and $row['users.company'] echo nothing while > $row['cnt'] echoes it's e

[PHP] Echoing a value

2004-07-12 Thread Ed Curtis
I'm having some trouble echoing a value to a file that is being pulled from a MySQL database. I've included my code below I'm sure it's something really simple but I'm not seeing it. $row['users.name'] and $row['users.company'] echo nothing while $row['cnt'] echoes it's expected values. If anyone