Re: [PHP] What is this called?

2009-07-06 Thread Michael A. Peters
and throw your favorite Linux distro on it (I'm not touching that holy war with a 10' eth0 cord) I'll touch it. It shouldn't be Fedora - Fedora has too short of a lifetime before major version update is necessary to get patches. The main advantages of Fedora are how new and shiny the deskt

RE: [PHP] What is this called?

2009-07-06 Thread Daevid Vincent
> -Original Message- > From: Wolf [mailto:lonew...@nc.rr.com] > Sent: Monday, July 06, 2009 8:10 AM > > If you are running MySQL, go get a 486, put Fedora on it and > use it for the heavy queries. You didn't seriously just tell someone to use an ancient-ass __80486__ PC for their "hea

Re: [PHP] What is this called?

2009-07-06 Thread Daniel Brown
On Mon, Jul 6, 2009 at 11:15, Miller, Terion wrote: > > It seems like Pagination except I already have that in place for all records, > so maybe I'm just looking for a way to page the search results... > Boss kept referring to "partitioning results" By definition, yes, but if you use the term

Re: [PHP] What is this called?

2009-07-06 Thread Miller, Terion
On 7/6/09 10:07 AM, "Daniel Brown" wrote: On Mon, Jul 6, 2009 at 10:48, Miller, Terion wrote: > Ok, say you have a database with 16000 records in it, but you only want to > call out say 2000 records at a time as the search/query is performed, then > store the first 2000 in a session and then r

Re: [PHP] What is this called?

2009-07-06 Thread Wolf
"Miller wrote: > Ok, say you have a database with 16000 records in it, but you only want to > call out say 2000 records at a time as the search/query is performed, then > store the first 2000 in a session and then retrieve the next 2000 etc etc as > a way to minimize server strain? > > (I'm

Re: [PHP] What is this called?

2009-07-06 Thread Daniel Brown
On Mon, Jul 6, 2009 at 10:48, Miller, Terion wrote: > Ok, say you have a database with 16000 records in it, but you only want to > call out say 2000 records at a time as the search/query is performed, then > store the first 2000 in a session and then retrieve the next 2000 etc etc as > a way to min

Re: [PHP] What is this called?

2009-07-06 Thread Stuart
2009/7/6 Miller, Terion : > Ok, say you have a database with 16000 records in it, but you only want to > call out say 2000 records at a time as the search/query is performed, then > store the first 2000 in a session and then retrieve the next 2000 etc etc as > a way to minimize server strain? > > (

Re: [PHP] What is $this->

2007-02-19 Thread M.Sokolewicz
Ok, I'm pretty sure you have a point there, but I can't really see it to be honest. First of all, let's start out with the usual: RTFM! This page: http://www.php.net/oop should explain basic class/object/method/member terminology required to understand what's going on here. In short you coul

Re: [PHP] What is $this->

2007-02-19 Thread Sancar Saran
Hi, I believe there are more offical answes available at around the web. This is what I understand $this-> This is a base OO programming thing. IN oo world you have to create new object to do someting. like $db = new adodb; so after the generate object you will modify this object via functio

Re: [PHP] What is $this->

2007-02-19 Thread Leonard Burton
oops, typo. Should have been $this->message. Leonard On 2/18/07, André Medeiros <[EMAIL PROTECTED]> wrote: Actually, $this->$message would be wrong, but the concept is right. On 2/19/07, Leonard Burton <[EMAIL PROTECTED]> wrote: > HI, > > > $this->SetFont('Arial','B',15); > > what you include

Re: [PHP] What is $this->

2007-02-18 Thread André Medeiros
Actually, $this->$message would be wrong, but the concept is right. On 2/19/07, Leonard Burton <[EMAIL PROTECTED]> wrote: HI, > $this->SetFont('Arial','B',15); what you include is a snippet from a class. Here is a brief into to how a class works, sort of like a function. The $this refers to

Re: [PHP] What is $this->

2007-02-18 Thread Leonard Burton
HI, $this->SetFont('Arial','B',15); what you include is a snippet from a class. Here is a brief into to how a class works, sort of like a function. The $this refers to the class from inside of the class. $message = $message; } function display(){ print "$this->message\n"; }

Re: [PHP] what is this: dirname(__FILE__)?

2005-08-01 Thread Burhan Khalid
On Aug 1, 2005, at 3:18 AM, Robert Cummings wrote: On Sun, 2005-07-31 at 20:04, Sam Smith wrote: I don't recognize this something(__SOMETHING__) format. I know what it's doing but I don't know how it's doing it. Constants of the type __SOMETHING__ are historical constants for retrieving

Re: [PHP] what is this: dirname(__FILE__)?

2005-07-31 Thread Robert Cummings
On Sun, 2005-07-31 at 20:04, Sam Smith wrote: > I don't recognize this something(__SOMETHING__) format. I know what it's > doing but I don't know how it's doing it. Constants of the type __SOMETHING__ are historical constants for retrieving contextual information about the source code in which the

Re: [PHP] what is -- $this variable -> $this other variable -- means?

2005-06-02 Thread ...helmut
thanks for your responses, your comments have lead me to: http://php.mirrors.ilisys.com.au/manual/en/language.variables.scope.php and http://php.mirrors.ilisys.com.au/manual/en/language.variables.variable.php which certainly explain what I was after. Thanks! -- ...helmut helmutgranda.com

Re: [PHP] what is -- $this variable -> $this other variable -- means?

2005-06-01 Thread John Nichel
Marek Kilimajer wrote: ...helmut wrote: What does $this variable -> $this other variable Means? I have seen it and i have "used" but I am not sure what exactly it means in regular English or Spanish wording that is. read about variable variables While variable variables are useful, and

Re: [PHP] what is -- $this variable -> $this other variable -- means?

2005-06-01 Thread Richard Lynch
On Wed, June 1, 2005 12:43 pm, ...helmut said: > $this variable -> $this other variable > > Means? > > I have seen it and i have "used" but I am not sure what exactly it means > in > regular English or Spanish wording that is. In Computer Science it is known as: slot property member variable depe

Re: [PHP] what is -- $this variable -> $this other variable -- means?

2005-06-01 Thread Marek Kilimajer
Richard Davey wrote: Hello Marek, Wednesday, June 1, 2005, 9:48:36 PM, you wrote: What does $this variable -> $this other variable Means? MK> read about variable variables Wouldn't that be $$variable? :) It looks like an object method request to me. I thought this was covered in that

Re: [PHP] what is -- $this variable -> $this other variable -- means?

2005-06-01 Thread Marek Kilimajer
...helmut wrote: What does $this variable -> $this other variable Means? I have seen it and i have "used" but I am not sure what exactly it means in regular English or Spanish wording that is. read about variable variables -- PHP General Mailing List (http://www.php.net/) To unsubscribe, v

Re: [PHP] What is this??

2002-10-27 Thread Miguel Brás
Ok I found the problem. I also had a column on my table and I was not using it, so I deleted her. I had also one more field on my form and forgot to add him to the query. Thx for the hint Best Miguel "Leif K-Brooks" <[EMAIL PROTECTED]> escreveu na mensagem news:3DBCA42E.9070608@;buyer-brokerage.c

Re: [PHP] What is this??

2002-10-27 Thread Leif K-Brooks
My guess is that you're doing something like "insert into table(col1,col2,col3) values('val1','val2')". You need to have an equal ammount of columns and values. Miguel Brás wrote: Hi guys, I was doing a script to insert data on a table, and the following message appeared me when testing the f

RE: [PHP] What is this??

2002-10-27 Thread Jarrad Kabral
It means you are most likely performing an insert and have more fields specified than values given. If you give us your SQL we can help you out. Regards Jarrad Kabral -Original Message- From: Miguel Brás [mailto:molino26@;netcabo.pt] Sent: Monday, 28 October 2002 1:40 PM To: [EMAIL PR

Re: [PHP] What is this??

2001-04-27 Thread Ivan Porro
wrote: > > where is that? > > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Jack > Dempsey > Sent: Thursday, April 26, 2001 10:38 PM > To: Manesh > Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED] > Subject: Re: [PH

Re: [PHP] What is this??

2001-04-26 Thread Philip Olson
Have a look at this post : http://marc.theaimsgroup.com/?m=98571030029538 regards, philip On Thu, 26 Apr 2001, Manesh wrote: > Warning: Undefined variable > > > How do i get rid of this??? > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, e-mail: [EMAIL PROTECTE

Re: [PHP] What is this??

2001-04-26 Thread Andrew Hill
ursday, April 26, 2001 10:38 PM > To: Manesh > Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED] > Subject: Re: [PHP] What is this?? > > > Manesh wrote: >> >> Warning: Undefined variable >> >> How do i get rid of this??? >> >> -- >> PHP General Mai

RE: [PHP] What is this??

2001-04-26 Thread Manesh
where is that? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Jack Dempsey Sent: Thursday, April 26, 2001 10:38 PM To: Manesh Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: [PHP] What is this?? Manesh wrote: > > Warning: Undefined va

Re: [PHP] What is this??

2001-04-26 Thread Jack Dempsey
Manesh wrote: > > Warning: Undefined variable > > How do i get rid of this??? > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > To contact the list administrators, e-mail: [EMAIL PROTECTED]