hi List,
I have written a library of php classes to manage database objects.
So my application now access to this library instead of accessing
directly to the database.
Now, I need to add an access control to my classes, like a check to a
$_SESSION variable.
A solution can be add this lines in f
On Tue, Dec 2, 2008 at 7:48 PM, Micah Gersten <[EMAIL PROTECTED]> wrote:
> VamVan wrote:
> > Hello All,
> >
> > I was stuck with this issue. So just felt the need to reach out to other
> > strugglers.
> > May be people might enjoy this:
> >
> > Here is the code for object to array and array to obj
VamVan wrote:
> Hello All,
>
> I was stuck with this issue. So just felt the need to reach out to other
> strugglers.
> May be people might enjoy this:
>
> Here is the code for object to array and array to object conversion:
>
> function object_2_array($data)
> {
> if(is_array($data) || is_obje
Hello All,
I was stuck with this issue. So just felt the need to reach out to other
strugglers.
May be people might enjoy this:
Here is the code for object to array and array to object conversion:
function object_2_array($data)
{
if(is_array($data) || is_object($data))
{
$result
VamVan wrote:
Hello Guys,
Here is the object. How can I get access to the [Name] = access. People who
help me with this can you please tell me what is the logic behind traversing
the objects and how do you gather the values. Thanks. I am looking for an
answer like this $queryResult->f->dsfsd
You should be able to access the "Name" field using this syntax:
QueryResult->records[0]->sobjects[0]->fields->Name
Reading from left-to-right:
1. accessing index 0 (zero) of the "records" array.
2. accessing index 0 (zero) of the "objects" array.
3. accessing the "Name" property of the "fields
Hello Guys,
Here is the object. How can I get access to the [Name] = access. People who
help me with this can you please tell me what is the logic behind traversing
the objects and how do you gather the values. Thanks. I am looking for an
answer like this $queryResult->f->dsfsdf
QueryResult O
Just a customer of mine who said that he'll be running PHP 4 and 5 on the
same server, and that he would share session data ;-)
Bye.
Julien.P
2008/4/7 Richard Heyes <[EMAIL PROTECTED]>:
> Have you seen how PHP makes difference between private, protected and
> > public
> > attributes of an object
Have you seen how PHP makes difference between private, protected and public
attributes of an object, into the session file ?
There are special caracters before them to recognize them.
So the question is : is PHP4 able to read such a session file ?
And how will it interpret them when we ask him t
Have you seen how PHP makes difference between private, protected and public
attributes of an object, into the session file ?
There are special caracters before them to recognize them.
So the question is : is PHP4 able to read such a session file ?
And how will it interpret them when we ask him to
On Sun, 2008-04-06 at 11:02 -0400, Mark Weaver wrote:
> So, if I create a user object, set the properties of said user object
> and store that object in the user session will that object be available
> throughout the application from the session?
http://phpro.org/tutorials/Introduction-To-PHP-
Richard Heyes wrote:
So, if I create a user object, set the properties of said user object
and store that object in the user session will that object be
available throughout the application from the session?
Yes. Just remember to include the class definition before you start the
session on su
So, if I create a user object, set the properties of said user object
and store that object in the user session will that object be available
throughout the application from the session?
Yes. Just remember to include the class definition before you start the
session on subsequent pages, otherw
Hi All,
I've got something on my little mind, and please keep in mind I'm still
somewhat new to PHP Oop, so please excuse my silly ass if I ask
something that should be obvious.
I've got an application that I'm re-writing from PERL to PHP Oop. At the
beginning of the application, at log in,
On Wed, Mar 19, 2008 at 10:37 AM, Jim Lucas <[EMAIL PROTECTED]> wrote:
> I would be interested in your examples. From what you described, I can't
> see in
> my head how it all goes together.
>
there was one caveat; i had to introduce a keyVal() instance method so
client code can get the object t
Nathan Nobbe wrote:
another developer brought to my attention the spl method spl_object_hash()
method which afforded a mod in the previously posted class whereby foreach
could be used properly. also, it allows a more efficient internal
implementation. however, to my dismay, it appears that impl
another developer brought to my attention the spl method spl_object_hash()
method which afforded a mod in the previously posted class whereby foreach
could be used properly. also, it allows a more efficient internal
implementation. however, to my dismay, it appears that implementing
ArrayAccess d
Sorry for the long post, but I thought it would explain much of my
thinking... Anyway, here we go...
Jeremy Mcentire wrote:
You may have meant the while loop to iterate over $row =
fetch_object($res) ...
You are correct, I was simply trying to get the concept across. But you
are correct,
Robert Cummings wrote:
On Sun, 2008-03-16 at 11:42 -0700, Jim Lucas wrote:
Robert Cummings wrote:
Imagine 200 customers in your example... your example will hit the DB
201 times. The above hits the DB twice.
My code was intended to get the concept across. Thanks for the
suggestions though.
On Sun, 2008-03-16 at 11:42 -0700, Jim Lucas wrote:
> Robert Cummings wrote:
> > Imagine 200 customers in your example... your example will hit the DB
> > 201 times. The above hits the DB twice.
>
> My code was intended to get the concept across. Thanks for the
> suggestions though.
Ah, ok. I'
Richard Heyes wrote:
Hi,
Going off the subject alone, you might want to investigate the
__tostring() magic method that you can define to handle objects being
cast to a string. Also, there's a whole bunch of magic methods that you
can use to handle PHP operations on user defined objects:
htt
Robert Cummings wrote:
Imagine 200 customers in your example... your example will hit the DB
201 times. The above hits the DB twice.
My code was intended to get the concept across. Thanks for the
suggestions though.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit:
after talking w/ marcus it sounds like theyve explicitly decided not to
support objects in the aforementioned context.
-nathan
On Sat, Mar 15, 2008 at 6:02 PM, Jim Lucas <[EMAIL PROTECTED]> wrote:
> It has been brought to my attention that with Perl and Ruby, you can use
> Objects as the value of the key within an array. The examples that were
> shown to me make me think that this would be an awesome ability to have
> wi
Hi,
Going off the subject alone, you might want to investigate the
__tostring() magic method that you can define to handle objects being
cast to a string. Also, there's a whole bunch of magic methods that you
can use to handle PHP operations on user defined objects:
http://uk.php.net/manual/
On Sat, 2008-03-15 at 15:02 -0700, Jim Lucas wrote:
> This question should probably be directed at the PHP Internals list, but
> I thought I would start by asking here first if anybody would even use
> this feature.
>
> It has been brought to my attention that with Perl and Ruby, you can use
>
On Mar 15, 2008, at 7:16 PM, Ray Hauge wrote:
Jim Lucas wrote:
It has been brought to my attention that with Perl and Ruby, you
can use Objects as the value of the key within an array. The
examples that were shown to me make me think that this would be an
awesome ability to have within PHP
Jim Lucas wrote:
This question should probably be directed at the PHP Internals list, but
I thought I would start by asking here first if anybody would even use
this feature.
It has been brought to my attention that with Perl and Ruby, you can use
Objects as the value of the key within an arr
This question should probably be directed at the PHP Internals list, but
I thought I would start by asking here first if anybody would even use
this feature.
It has been brought to my attention that with Perl and Ruby, you can use
Objects as the value of the key within an array. The examples
On 8/8/07, Richard Lynch <[EMAIL PROTECTED]> wrote:
>
> On Tue, July 31, 2007 8:40 am, Eric Butera wrote:
> > On 7/31/07, Nathan Nobbe <[EMAIL PROTECTED]> wrote:
> >> i
> >> feel sorry for Richard; if youd ever seen a successful
> >> implementation of
> >> design patterns in the wild
> >> well you
On Tue, 2007-08-07 at 23:44 -0500, Richard Lynch wrote:
>
> I'm not trying to be a jerk or pick a fight here, but am suggesting
> list members think about this before they post. Especially that whole
> PHP-Editors thread, which always consists of one person from each camp
> posting their favorite
On Tue, July 31, 2007 8:40 am, Eric Butera wrote:
> On 7/31/07, Nathan Nobbe <[EMAIL PROTECTED]> wrote:
>> i
>> feel sorry for Richard; if youd ever seen a successful
>> implementation of
>> design patterns in the wild
>> well you would probly feel like i do... gotta have em :)
This post is a res
well im not trying to convince everyone to start doing oop, just because i
dont have time. maybe if i get rich and have time
ill go on a dedicated mission or something.
anyway i think its obvious that objects are powerful. look at the big php
projects out there; wikipedia, facebook, many of the
n
At 1:25 AM -0500 7/31/07, Richard Lynch wrote:
On Sun, July 29, 2007 12:45 pm, Nathan Nobbe wrote:
one of the hardest parts about using design patterns in reality is you
have
to be able to recognize a certain
problem and then you can begin to understand how to apply a particular
pattern or
On 7/31/07, Nathan Nobbe <[EMAIL PROTECTED]> wrote:
> > On 7/31/07, Richard Lynch <[EMAIL PROTECTED]> wrote:
> > Or, in my experience with pattern zealots, mis-recognize a problem as
> > a pattern it isn't, mis-apply the "solution" and then spend years
> > dealing with a square peg in a round hole.
> On 7/31/07, Richard Lynch <[EMAIL PROTECTED]> wrote:
> Or, in my experience with pattern zealots, mis-recognize a problem as
> a pattern it isn't, mis-apply the "solution" and then spend years
> dealing with a square peg in a round hole...
The funny thing about that is w/ OOP and design patterns
On Sun, July 29, 2007 12:45 pm, Nathan Nobbe wrote:
> one of the hardest parts about using design patterns in reality is you
> have
> to be able to recognize a certain
> problem and then you can begin to understand how to apply a particular
> pattern or set of patterns to your
> solution.
Or, in m
tedd,
have you looked at the book we're talking about?
also, there are several other books on design patterns available, but the
Heads First book
is one ive heard mentioned a lot.
you can check out a really sweet site online phppatterns.com; in particular
follow the design
link on the right hand n
At 2:00 PM -0400 7/25/07, Nathan Nobbe wrote:
yes well at the beginning of the design patterns book they basically explain
the same thing.
if you dont understand the basic oo priciples, then design patterns arent
going to make any sense.
these basic concepts are (not looking in the book [testing
> On 7/27/07, Richard Lynch <[EMAIL PROTECTED]> wrote:
> And the practical issues, well, few OOP courses really dive into that,
> to tell you the truth...
This is why the study of design patterns is so important, imho.
-nathan
On 7/27/07, Richard Lynch <[EMAIL PROTECTED]> wrote:
>
> On Wed, July
On Wed, July 25, 2007 6:33 am, Suporte - DPRJ Sistemas wrote:
> Is there anyone here interested in teaching (lond distance, off
> course) OOP?
>
> I would like to learn how to use objects (I have been working all my
> life using structured language). All the books I have tried just
> "talk" about t
On 7/25/07, Nathan Nobbe <[EMAIL PROTECTED]> wrote:
Eric,
i was referring to the exact book you mentioned. here is an excerpt from
page 32
of the book:
' we assume you know the oo basics of using classes polymorphically,
how inheritance is like design by contract, and how encapsulation works.
Eric,
i was referring to the exact book you mentioned. here is an excerpt from
page 32
of the book:
' we assume you know the oo basics of using classes polymorphically,
how inheritance is like design by contract, and how encapsulation works. if
you are a little rusty on these, pull out your hea
On 7/25/07, Tony Marston <[EMAIL PROTECTED]> wrote:
Design patterns will just confuse the issue. If you come from a non-OO
background (just like me) and want to know what all this OO stuff is about
you might want to take a look at the following:
http://www.tonymarston.net/php-mysql/good-bad-oop.h
yes well at the beginning of the design patterns book they basically explain
the same thing.
if you dont understand the basic oo priciples, then design patterns arent
going to make any sense.
these basic concepts are (not looking in the book [testing myself]..)
encapsulation
abstraction
polymorphi
Design patterns will just confuse the issue. If you come from a non-OO
background (just like me) and want to know what all this OO stuff is about
you might want to take a look at the following:
http://www.tonymarston.net/php-mysql/good-bad-oop.html
http://www.tonymarston.net/php-mysql/hero-or-her
eric is exactly right; design patterns are key; and so is that book ;)
-nathan
On 7/25/07, Eric Butera <[EMAIL PROTECTED]> wrote:
On 7/25/07, Suporte - DPRJ Sistemas <[EMAIL PROTECTED]> wrote:
> Hello!
>
> Is there anyone here interested in teaching (lond distance, off course)
OOP?
>
> I would
On 7/25/07, Suporte - DPRJ Sistemas <[EMAIL PROTECTED]> wrote:
Hello!
Is there anyone here interested in teaching (lond distance, off course) OOP?
I would like to learn how to use objects (I have been working all my life using
structured language). All the books I have tried just "talk" about
[snip]
Is there anyone here interested in teaching (lond distance, off course)
OOP?
I would like to learn how to use objects (I have been working all my
life using structured language). All the books I have tried just "talk"
about theory not practical issues.
I intend to pay for the classes.
[/sn
Hello!
Is there anyone here interested in teaching (lond distance, off course) OOP?
I would like to learn how to use objects (I have been working all my life using
structured language). All the books I have tried just "talk" about theory not
practical issues.
I intend to pay for the classes.
Shaw, Chris - Accenture wrote:
Jasper,
I would have thought php would have called the destructors on each of the
classes in a LIFO fashion, but if it doesn't, just use unset() as a
workaround, where you can remove the classes in the order you want.
I should add that this behaviour seems to hav
EMAIL PROTECTED]
Sent: 21 July 2005 05:45
To: php-general@lists.php.net
Subject: [PHP] objects destroyed in same order as created?
*
This e-mail has been received by the Revenue Internet e-mail service.
*
Hi all
I am curr
Hi all
I am currently working on a PHP 5 application. For the sake of
simplicity, I'll only describe 3 classes here, as that is all that is
required for you to see my problem.
I have a DB class that interacts with the database, a Session class that
controls the session with the user, and a U
On 6/9/05, Matthew Weier O'Phinney <[EMAIL PROTECTED]> wrote:
> Actually, that is the point.
If I decide the write a script, and it is my idea, then the point of
the script is my own. It's a simple benchmark. I doubt a client
would ever come to me and say "Can you write me a script to add two
ra
* Greg Donald <[EMAIL PROTECTED]> :
> On 6/8/05, Greg Beaver <[EMAIL PROTECTED]> wrote:
> > If you want to compare object methods versus functions, you should
> > compare identical code inside a method to code inside a function.
> > Greg's benchmarks compare two different ideological code structure
On 6/8/05, Greg Beaver <[EMAIL PROTECTED]> wrote:
> If you want to compare object methods versus functions, you should
> compare identical code inside a method to code inside a function.
> Greg's benchmarks compare two different ideological code structures.
> Quite honestly, the wrapping of mt_sran
Greg Donald wrote:
> On 6/8/05, NSK <[EMAIL PROTECTED]> wrote:
>
>>Hi, I am creating a small API in PHP, i.e. a collection of reusable functions
>>for other programmers. As it is now, it is just many functions together in
>>the same file. Do you think I should make it object-oriented? What are the
On 6/8/05, NSK <[EMAIL PROTECTED]> wrote:
> Hi, I am creating a small API in PHP, i.e. a collection of reusable functions
> for other programmers. As it is now, it is just many functions together in
> the same file. Do you think I should make it object-oriented? What are the
> pros and cons of this
Hi, I am creating a small API in PHP, i.e. a collection of reusable functions
for other programmers. As it is now, it is just many functions together in
the same file. Do you think I should make it object-oriented? What are the
pros and cons of this approach in PHP?
I am particularly very conce
Hi,
I think you need to serialize your objects.
http://us3.php.net/manual/en/language.oop.serialization.php
Jason
On 5/5/05, Stuart Nielson <[EMAIL PROTECTED]> wrote:
> Sorry to everyone about the stupid READ notification on the posting. I
> completely forgot that it was enabled. This one s
Sorry to everyone about the stupid READ notification on the posting. I
completely forgot that it was enabled. This one shouldn't have that
problem.
I am using PHP version 4.3.4.
I'm creating an authorization module that uses a users object, that
includes the username, usertype, etc. I want to
I am using PHP version 4.3.4.
I'm creating an authorization module that uses a users object, that includes
the username, usertype, etc. I want to store this in a session variable
(i.e. $_SESSION['objects']['auth'] = new Authorization();) so that I can
keep the information from page to page. Ho
I think, its not possible to init an Objeect on a session. Session will be
rebuild on each reload of the site based on the session id, i think...
Maybe here the object can't be rebuild anymore...
> Following code:
>
>
> class SessionTestC {
> protected $value;
>
> function __construct (
Thomas Munz wrote:
I think, its not possible to init an Objeect on a session.
Yes, it can.
The problem was with serialization. With session.auto_start set to 1 on
php.ini, seems like session's objects are unserialized before loading
the script, so the class is not loaded when the session unseri
Following code:
class SessionTestC {
protected $value;
function __construct ( $val ) {
$this->value = $val;
}
function GetValue () {
return $this->value;
}
}
if ( isset ($_SESSION['TestObj'])) {
echo 'Session Test is set to: '.$_SESSION['TestObj']->GetValue().'';
}
Alawi Albaity wrote:
I want to create and defined variables of an object in runtime , is
that possible ?
I can do that with arrays but I want the access it as variable from
obbject it self and not like member of an array are defined on object
before I load it !
What about trying it before asking?
-
I want to create and defined variables of an object in runtime , is
that possible ?
I can do that with arrays but I want the access it as variable from
obbject it self and not like member of an array are defined on object
before I load it !
--
Alawi Albaity
Jeddah - KSA
Mobile : +966506660442
--
Hi there, needing some more advise, is this function correct ?
function create_object($class_name,$dir = null, $serialize = null)
{
$dir ? $dir = $dir."/" : $dir = "";
require_once("".CLASS_PATH.$dir.$class_name.".php");
Hi there going back to the discussions of objects in a session. I would like
to know what are the benifits of this, and in what scenarios would it be
used. I have an application I am trying to make scalable if possible, it
uses a sub class to a phplayers menu class which parses an xml file and
gene
Hi,
I got problem when i want to save object in session.
I got my first page when I create my object and save it to session:
Load($_Get['id']);
$_SESSION['save'] = $test;
?>
In my second page I want to retrieve my object
When I do get_class($_SESSION['test']); I got
Here is my code. Two files: 1) myclass.php 2)test.php to instantiate the
objects.
I have two classes. One is a "parts" class with some basic properties in an
array. And the other class is the "repair" class which needs to hold MANY
parts. In the "repair" class, I have a $partsarray so that I can j
Hi,
I've discovered strange behavior of PHP. The following script has no sense
and value,
it is simplified due to clearness. The output of the script should be (in my
opinion):
class A2
class A1
But it isn't (using PHP 4.3.4). The problem arise, when the Callback
function of a1
object calls GetOt
Hi all,
I want to share data between two frames. My object should be a php script
(if possible).
The object should know (using a session variable) which id is currently
displayed in each frame.
This way, the object can decide if the frame should be refreshed or not,
because it knows what ID alread
My problem is illistrated by the following test code:
class test {
var $flag = 0;
function getFlag() { return $this->flag; }
var $t;
function Init() {
$c = new test;
$this->t = $c;
$c->flag = 1000;
}
ALL in your php.ini
file (or temporarly at the top of your scripts with error_reporting
(E_ALL);, this will help debug programs like this :))
Andrew
- Original Message -
From: "Beth Gore" <[EMAIL PROTECTED]>
To: "PHP General List" <[EMAIL PROTECTED]>
Sent: Tuesday,
ge -
From: "Beth Gore" <[EMAIL PROTECTED]>
To: "PHP General List" <[EMAIL PROTECTED]>
Sent: Tuesday, December 24, 2002 6:42 PM
Subject: [PHP] objects within arrays
> Hi,
>
> I'm really struggling with this - I'm writing a simple webmail clie
Hi,
I'm really struggling with this - I'm writing a simple webmail client
for myself (because they've blocked the common ones at work hehe)
Anyway, as soon as I tried to access..
$header = imap_header($inbox,$msgID);
$header->from['mailbox'];
... I get nothing.
I did a print_r on that, and I
First, I'm more of a quick learning hack than a developer. I have some code
with a few functions that I've written. I have moved a good part of this to
a class and have updated the code to define an object based on this class
and
do its stuff.
I feel that I understand objects/classes and how to
ðÒÉ×ÅÔ!
Alexander Ross wrote:
> I have an array filled with objects. Each object has a method called
> "display".
>
> I have
>
> $var = $arr[0];
> $var->display();
>
> but I keep getting an error. What am I doing wrong?
> (I do a print_r of the array immediately before this code and there is
I have an array filled with objects. Each object has a method called
"display".
I have
$var = $arr[0];
$var->display();
but I keep getting an error. What am I doing wrong?
(I do a print_r of the array immediately before this code and there is an
object at array[0])
Thanks
Alex
--
PHP Ge
Handles closing of tags!
/
}
}
Best regards
Fredrik Davidsson
Alfaproject AB
-Original Message-
From: Mirek Novak [mailto:[EMAIL PROTECTED]]
Sent: den 21 maj 2002 14:52
To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Su
Doh, typo:
// this next line would generate a parse error
// print("c:a1: " . $c->echo($a)->method1() . "\n");
should read
// this next line would generate a parse error
// print("c:a1: " . $c->echoMethod($a)->method1() . "\n");
On Thursday, April 4, 2002, at 05:25 PM, Steve Cayford wrote:
On Thursday, April 4, 2002, at 04:21 PM, Erik Price wrote:
> I looked in the manual, but didn't see anything about this. I've read
> that PHP isn't a true object-oriented language, but rather simulates
> elements of object-oriented programming. Can I write a class that
> performs operation
I looked in the manual, but didn't see anything about this. I've read
that PHP isn't a true object-oriented language, but rather simulates
elements of object-oriented programming. Can I write a class that
performs operations and manipulates objects? Can objects be placed into
arrays etc?
E
If you register an object as a session variable, do you need to include the
objects class *before* start_session()?
What if I use serialize() on my object, and then register a variable with
the serialized data; then I can start_session(), do some other things, then
include the class definition, t
On Monday 26 November 2001 23:37, Christopher William Wesley wrote:
> On Mon, 26 Nov 2001, Greg Sidelinger wrote:
> > Can someone tell me how to store a class in a session var. I
> > want to
>
> There are several things you need to do.
>
> 1) include the class definition before you do anything
>
On Mon, 26 Nov 2001, Greg Sidelinger wrote:
> Can someone tell me how to store a class in a session var. I want to
There are several things you need to do.
1) include the class definition before you do anything
2) start the session shortly thereafter
3) register a session variable
4) create y
> later on I get errors about the class functions being undefined.
> Can anyone please point me in the right direction on how to
> register my objects as session vars.
Class definition *must* be before any session_start() or
sessgion_register() if there are previously stored objects in the
se
Can someone tell me how to store a class in a session var. I want to
test to see if it has been defined and if not create it. I'm having
problems with it right now.
This is what I'm trying currently
temp=1;
}
}
session_start();
if ( !isset( $c )
On Tue, 3 Jul 2001 11:47, Ethan Schroeder wrote:
> If what you mean is if PHP sessions can register objects, that is true and
> quite effective.
Can you elaborate on this Ethan so I'm sure I understand what you're saying.
Cheers,
Brad
--
PHP General Mailing List (http://www.php.net/)
To unsub
If what you mean is if PHP sessions can register objects, that is true and
quite effective.
Ethan Schroeder
- Original Message -
From: "Brandon Orther" <[EMAIL PROTECTED]>
To: "PHP User Group" <[EMAIL PROTECTED]>
Sent: Monday, July 02, 2001 4:36 PM
Sub
Hello,
I was informed by someone that is a blatent liar and regulary makes
things up that PHP session can handle Objects. Is this true?
Thank you,
Brandon Orther
From: "Jørg Vidar Bryne" <[EMAIL PROTECTED]>
Sent: Saturday, March 10, 2001 11:52 PM
> What do you mean by it fails? Any particular error, or does it just time
> out?
>
> I've made a different recursive function to print a tree-menu, you can
have
> a look at it if you want but it might not be wh
> Hi,
> I want to make a recursive function generating a hierarchy using a class.
>
> The following code works fine when I don't wrap the function around it,
> but when I do it fails. I can't figure out why...
> I'm thinking I may need to make some vars global, or maybe you can't use
> objects ins
ects (starting node)
?>
- Original Message -----
From: "Peter Van Dijck" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Saturday, March 10, 2001 9:43 PM
Subject: [PHP] objects in functions?
> Hi,
> I want to make a recursive function generating a hierarch
Hi,
I want to make a recursive function generating a hierarchy using a class.
The following code works fine when I don't wrap the function around it,
but when I do it fails. I can't figure out why...
I'm thinking I may need to make some vars global, or maybe you can't use
objects inside function
96 matches
Mail list logo