Re: [PHP] syntax help please?

2001-08-29 Thread Alexander Deruwe
On Wednesday 29 August 2001 14:45, Glyndower wrote: > Heres my "I'm a newbie" question... exactly how and where do I define the > variables so that i can use them in a different order than they are in the > query? Go over your results like this instead: while ($row = mysql_fetch_row($result))

Re: [PHP] syntax help please?

2001-08-29 Thread David Robley
On Thu, 30 Aug 2001 00:15, Glyndower wrote: > I'm coming over from the ASP side and I'm trying to get a handle on > this stuff, I could use a little help with the how and wheres, please. > I do ok with the SQl bits, but the PHP bits are still being elusive... > > Heres my code: > > $sql = "SELECT

RE: [PHP] Syntax Help, Please

2004-06-15 Thread Rick Fletcher
> I've forgotten how to assign something like this... > > $someStr = EOF>>>" > bunch of raw non-echo'd html > " > EOF>>>; > > But can't seem to get the right syntax. Tried looking in the > manual, but > don't even know what I'm looking for! You're looking for a "heredoc." http://www.php.

Re: [PHP] Syntax Help, Please

2004-06-15 Thread janet
In a message dated 6/15/2004 10:20:59 AM Pacific Daylight Time, [EMAIL PROTECTED] writes: >I've forgotten how to assign something like this... > >$someStr = EOF>>>" > bunch of raw non-echo'd html >" >EOF>>>; > >But can't seem to get the right syntax. Tried looking in the manual, but >don't

Re: [PHP] Syntax Help, Please

2004-06-15 Thread Robin Vickery
On Tue, 15 Jun 2004 13:20:24 -0400, Steve Douville <[EMAIL PROTECTED]> wrote: > > I've forgotten how to assign something like this... > > $someStr = EOF>>>" > bunch of raw non-echo'd html > " > EOF>>>; > > But can't seem to get the right syntax. Tried looking in the manual, but > don't eve