Re: [PHP-WIN] Re: passing variables part 2

2002-10-13 Thread Cam Dunstan
db Far as I know it would - without the quotes of course. - Original Message - From: "db" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, October 12, 2002 7:40 AM Subject: [PHP-WIN] Re: passing variables part 2 > another roadblock: how would you pass a variable containing

Re: [PHP-WIN] Re: passing variables part 2

2002-10-13 Thread db
this is so weird. it didn't at first, but now it does. i must have had a typo in there someplace and just didn't catch it. thanks! "Cam Dunstan" <[EMAIL PROTECTED]> wrote in message 001d01c2717a$b2171080$7866a8c0@camhome">news:001d01c2717a$b2171080$7866a8c0@camhome... > db > Far as I know it

RE: [PHP-WIN] Re: Passing Variables

2002-05-24 Thread Opere, James
I need the group by clause to enable me pick the count of each type of item that can be used for drawing graphs.Remember that it is not very possible, although i don't know yet to come up with a chart of different number counts of each item without converting the counts to numerical values. -

RE: [PHP-WIN] Re: passing variables

2002-01-14 Thread Svensson, B.A.T. (HKG)
>The data has to be dynamically fed into the parser... I am trying to make >the parser into a form of a class with a function that receives this >variable but so far Unsuccessful.. Just keep up that happy debugging spirit... :) >If anyone has any further suggestions/ideas, wud be damn gratefull!

RE: [PHP-WIN] Re: passing variables

2002-01-14 Thread Sandeep Murphy
Message- From: Pac mon [mailto:[EMAIL PROTECTED]] Sent: segunda-feira, 14 de Janeiro de 2002 14:48 To: [EMAIL PROTECTED] Subject: Re: [PHP-WIN] Re: passing variables There is NO need for that... When including a file it's as if the file were inline with the code in the spot in which include

Re: [PHP-WIN] Re: passing variables

2002-01-14 Thread Pac mon
There is NO need for that... When including a file it's as if the file were inline with the code in the spot in which include() is called. You may want to use require() to make sure that the file is actually being added. Also you just need to use $data wherever you want.. Or you can do it like