[PHP] PHP class question

2009-05-21 Thread Peter van der Does
I have the following situation. I wrote some software and split it up into functionality: class core { function go{ } } class A extends core { // PHP4 constructor function A { $this->go(); } } class B extends core { } In core I define functions and variables that are to be used

[PHP] PHP class or functions to manipulate PDF metadata?

2009-04-03 Thread O. Lavell
Hi group, I am looking for an easy way to manipulate (read, write) the metadata (title, subject, keywords, author) in PDF files through PHP. Most PHP/PDF solutions I have found so far (through Google) are aimed at constructing PDFs from text and graphics, with lots of fancy features, but most

Re: [PHP] php class that allow quick row ordering

2005-05-02 Thread Jochem Maas
Graham Anderson wrote: Hi I am allready using a 'rank' field now... with 1 to N :) There are just so damned many of them to order manually the up/down button solution...is there a tutorial or php class out there I could take a look at... where you: give the class a query... the up and down link

Re: [PHP] php class that allow quick row ordering

2005-04-26 Thread Graham Anderson
Hi I am allready using a 'rank' field now... with 1 to N :) There are just so damned many of them to order manually the up/down button solution...is there a tutorial or php class out there I could take a look at... where you: give the class a query... get a found set back as html with these up/

Re: [PHP] php class that allow quick row ordering

2005-04-26 Thread Richard Lynch
On Tue, April 26, 2005 7:05 pm, Graham Anderson said: > lately, I'm finding myself reordering large amounts of rows populated > from a database query ...with an order_id field > this is a bit tedious re-entering every order_id for a found set :( Do different users get to order differently, or is

[PHP] php class that allow quick row ordering

2005-04-26 Thread Graham Anderson
hi lately, I'm finding myself reordering large amounts of rows populated from a database query ...with an order_id field this is a bit tedious re-entering every order_id for a found set :( Is there a php class out there that allows you to arbitrarily order rows in a found setgraphically ?

Re: [PHP] PHP Class

2004-10-12 Thread Brent Clements
October 12, 2004 11:28 PM Subject: [PHP] PHP Class Hi All , I do not know whether to post here or not , but it always happens that I always get the crispy answers from here. I have JDK 1.4.2 Installed on my machine, Now I externally downloaded a Jimi Package and I wanted to know how to instal

[PHP] PHP Class

2004-10-12 Thread Mulley, Nikhil
Hi All , I do not know whether to post here or not , but it always happens that I always get the crispy answers from here. I have JDK 1.4.2 Installed on my machine, Now I externally downloaded a Jimi Package and I wanted to know how to install/deploy/put this Jimi ( java Extension )in which f

[PHP] PHP class for XSL transformations?

2004-02-20 Thread memoimyself
Hello all, I'm looking for an alternative to PHP's XSLT extension. Does anyone know of a good PHP class capable of performing XSL transformations? Thanks for your time, Erik -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP Class ArrayQueue (2)

2003-10-16 Thread Marek Kilimajer
You need to read manual section about object oriented programing in php: http://www.php.net/oop Antonio Bologna wrote: Sorry, here it is the code: /* Trying to use queues in PHP, let * see if that works. */ class ArrayQueue { var $theArray = array(); var $currentSize; var $front; var $back

[PHP] PHP Class ArrayQueue (2)

2003-10-16 Thread Antonio Bologna
Sorry, here it is the code: http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP Class ArrayQueue

2003-10-16 Thread Antonio Bologna
Hello everyone, I'm just curious, I implemented a Array Queue in php, but not sure why is not working, this ArrayQueue is missing some functions like doubleQueue and dequeue, but anyway I'm trying to implmeneted in php, does anyone knows what's wrong? Thanks -- PHP General Mailing List (http://ww

Re: [PHP] PHP class and extends

2003-09-24 Thread Burhan Khalid
BENARD Jean-philippe wrote: [ snip ] Is there something to do in order that when I use xxx_cl_app->ExecuteQuery(), there's a function ExecuteQuery() in xxx_cl_app that do something like this : (xxx_cl_app.php) function ExecuteQuery(x,y) { $tmpResult = [herited_class]->ExecuteQuery(x,y);

RE: [PHP] PHP class and extends

2003-09-23 Thread Golawala, Moiz M (IndSys, GE Interlogix)
: BENARD Jean-philippe [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 23, 2003 7:59 AM To: [EMAIL PROTECTED] Subject: [PHP] PHP class and extends Hi ! I've got a problem with class extends. I've a "top" class which name is cl_app. xxx_cl_app is an extend of cl_

[PHP] PHP class and extends

2003-09-23 Thread BENARD Jean-philippe
Hi ! I've got a problem with class extends. I've a "top" class which name is cl_app. xxx_cl_app is an extend of cl_app. Cl_app define a function called "ExecuteQuery". xxx_cl_app define this function too but this one is obsolete. Now, I want to use the cl_app "ExecuteQuery" function in my

Re: [PHP] PHP Class for IP CIDR notation

2003-06-06 Thread Mark
Here's a quick function of the top of my head. I'm not sure if x.x.0.x or x.0.x.x are valid IP addresses. Adjust as necessary. 255) { echo "First octet of IP address cannot exceed 255"; return false; } $ip_list[]=implode(".",$octet); } return $ip_list; } $arr=cidr("192.1

[PHP] PHP Class for IP CIDR notation

2003-06-05 Thread Rob Lacey
does anyone know of a class that is able to extrapolate a list of IPs given an address in cidr notation. I have used the Net::Netmask module in perl, so I was just wondering if there was a PHP equivalent. Thanks Rob -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http:

Re[2]: [PHP] PHP - class question

2002-08-14 Thread Tom Rogers
Hi, Thursday, August 15, 2002, 5:17:00 AM, you wrote: MA> Well, I actually have a full db class which has a connect and close method MA> as well as query, fetch_array, etc... What I really want to know is how to MA> use the methods in my db class from another class (myclass for example).. MA> D

Re: [PHP] PHP - class question

2002-08-14 Thread Mark Armendariz
Do you know where I can find more info on how to use the scope resolution operator? My searches aren't giving much (at leant not mcuh regarding php) and in the manual, it only shows up momentarily as a note in the operators section... Mark "Nick Oostveen" <[EMAIL PROTECTED]> wrote in message

Re: [PHP] PHP - class question

2002-08-14 Thread Mark Armendariz
That seems more like what I'm looking for.. Thank you, Nick... Mark "Nick Oostveen" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > If you are just trying to access a classes functions without creating an > instance of it you're probably looking to use the

Re: [PHP] PHP - class question

2002-08-14 Thread Mark Armendariz
e: > $this->mydb(); This way you can always reuse the method from other code. > > hth, > Steve. > > -Original Message- > From: Mark Armendariz [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, August 14, 2002 2:44 PM > To: [EMAIL PROTECTED] > Subject: [PHP]

Re: [PHP] PHP - class question

2002-08-14 Thread Nick Oostveen
If you are just trying to access a classes functions without creating an instance of it you're probably looking to use the scope resolution operator ::. For this to work all you have to do is ensure that the definition for the class you wish to use is included into the file containing the clas

RE: [PHP] PHP - class question

2002-08-14 Thread Steve Bradwell
AIL PROTECTED]] Sent: Wednesday, August 14, 2002 2:44 PM To: [EMAIL PROTECTED] Subject: [PHP] PHP - class question Hello, To begin.. i'm new to the list... I'm trying to learn good practices in OOP based PHP. I'm actually a bit new to OOP in general, but I've done quite a bit

[PHP] PHP - class question

2002-08-14 Thread Mark Armendariz
Hello, To begin.. i'm new to the list... I'm trying to learn good practices in OOP based PHP. I'm actually a bit new to OOP in general, but I've done quite a bit of reading and playing around with it in the past couple of months. What I'm trying to figure out is the proper way to call a class

Re: [PHP] PHP class

2001-06-20 Thread Chris Lee
I havent used them in php/pear but here is some more info http://www.php.net/manual/en/class.pear.php -- Chris Lee [EMAIL PROTECTED] "Martín Marqués" <[EMAIL PROTECTED]> wrote in message 01062015390800.12018@bugs">news:01062015390800.12018@bugs... > Can we dream of having destructors in c

[PHP] PHP class

2001-06-20 Thread Martín Marqués
Can we dream of having destructors in class definition some day when programing in PHP? Saludos... ;-) -- Cualquiera administra un NT. Ese es el problema, que cualquiera administre. - Martin Marques |[EMAI