Ot: happy 04/12

2009-04-12 Thread James Finstrom
To all who do happy easter and to all who don't happy sunday.

-- 
Sent from my mobile device

James Finstrom
Rhino Equipment Corp.
http://rhinoequipment.com ~ http://postug.com
Phone: 1-877-RHINO-T1 ~ FAX: +1 (480) 961-1826
Twitter: http://twitter.com/rhinoequipment
IP: gu...@asterisk.rhinoequipment.com
---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss


Re: Ot: happy 04/12

2009-04-12 Thread Josef Lowder
On 4/12/09, James Finstrom  wrote:
> To all who do happy easter and to all who don't happy sunday.

Thank you James.  It's always nice to receive happy greetings.

With respect for the importance of trying to keep "off topics" on this
list short and reined in, may I refer anyone interested in the topic
of "easter" to this URL: www.upquick.com/essays/easter.htm and for
anyone who might like to discuss this topic further, here is a link
where non-registered visitors can post comments:
www.christianforumsite.com/newthread.php?do=newthread&f=78
---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss


Re: Ot: happy 04/12

2009-04-12 Thread Ralph Prowell
Thank you James.  Here is wishing you and your family a wonderful easter
celebration with a time together to remember why we celebrate Easter in
remembrance of our Lord.
Your Friend,
Ralph

On Sun, Apr 12, 2009 at 7:20 AM, James Finstrom <
jfinst...@rhinoequipment.com> wrote:

> To all who do happy easter and to all who don't happy sunday.
>
> --
> Sent from my mobile device
>
> James Finstrom
> Rhino Equipment Corp.
> http://rhinoequipment.com ~ http://postug.com
> Phone: 1-877-RHINO-T1 ~ FAX: +1 (480) 961-1826
> Twitter: http://twitter.com/rhinoequipment
> IP: gu...@asterisk.rhinoequipment.com
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
> To subscribe, unsubscribe, or to change your mail settings:
> http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss
>
---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss

Re: Ot: happy 04/12

2009-04-12 Thread mike havens
pascha is next week!

On Sun, Apr 12, 2009 at 1:07 PM, Ralph Prowell  wrote:

> Thank you James.  Here is wishing you and your family a wonderful easter
> celebration with a time together to remember why we celebrate Easter in
> remembrance of our Lord.
> Your Friend,
> Ralph
>
>
> On Sun, Apr 12, 2009 at 7:20 AM, James Finstrom <
> jfinst...@rhinoequipment.com> wrote:
>
>> To all who do happy easter and to all who don't happy sunday.
>>
>> --
>> Sent from my mobile device
>>
>> James Finstrom
>> Rhino Equipment Corp.
>> http://rhinoequipment.com ~ http://postug.com
>> Phone: 1-877-RHINO-T1 ~ FAX: +1 (480) 961-1826
>> Twitter: http://twitter.com/rhinoequipment
>> IP: gu...@asterisk.rhinoequipment.com
>> ---
>> PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
>> To subscribe, unsubscribe, or to change your mail settings:
>> http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss
>>
>
>
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
> To subscribe, unsubscribe, or to change your mail settings:
> http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss
>



-- 
:-)~MIKE~(-:
---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss

Re: Ot: happy 04/12

2009-04-12 Thread keith smith

Happy Easter my brother!



Keith Smith




--- On Sun, 4/12/09, James Finstrom  wrote:

From: James Finstrom 
Subject: Ot: happy 04/12
To: "Main PLUG discussion list" 
Date: Sunday, April 12, 2009, 7:20 AM

To all who do happy easter and to all who don't happy sunday.

-- 
Sent from my mobile device

James Finstrom
Rhino Equipment Corp.
http://rhinoequipment.com ~ http://postug.com
Phone: 1-877-RHINO-T1 ~ FAX: +1 (480) 961-1826
Twitter: http://twitter.com/rhinoequipment
IP: gu...@asterisk.rhinoequipment.com
---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss



  ---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss

php mysql max() question

2009-04-12 Thread Craig White
just want the max of an integer field ultimately into a variable.



seems pretty straight forward. In mysqlclient, the answer is of course
returned - perhaps as a row, I'm never quite sure.

The code above returns the following in a browser...

resource(6) of type (mysql result) - Resource id #6

and I've been trying all sorts of things 'SELECT AS...' and Googled for
several hours and I'm sort of convinced that what is being returned from
the sql query is neither an array, nor string and has to be converted
into a variable that is useful to me.

Anyone know how to do this (i.e. without pear-db)?

Craig


-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss


Re: php mysql max() question

2009-04-12 Thread A. W. Wright
Craig White wrote:
> just want the max of an integer field ultimately into a variable.
>
>$MaxSalesOrders = 'SELECT MAX(orderno) FROM salesorders;';
>   mysql_connect("$HOST", "$USER", "$PASSWD");
>   mysql_select_db("lighting_unlimited");
>   $MaxSalesOrdersResult = mysql_query($MaxSalesOrders);
>   mysql_close();
>   echo var_dump($MaxSalesOrdersResult) . " - " . \
>$MaxSalesOrdersResult;
> ?>
>
> seems pretty straight forward. In mysqlclient, the answer is of course
> returned - perhaps as a row, I'm never quite sure.
>
> The code above returns the following in a browser...
>
> resource(6) of type (mysql result) - Resource id #6
>
> and I've been trying all sorts of things 'SELECT AS...' and Googled for
> several hours and I'm sort of convinced that what is being returned from
> the sql query is neither an array, nor string and has to be converted
> into a variable that is useful to me.
>
> Anyone know how to do this (i.e. without pear-db)?
>
> Craig
>   
mysql_query (and mysqli_query) doesn't actually give you the resuly,
just a pointer to it. Use the mysql_fetch_assoc (returned array indexed
by column name) or mysql_fetch_row (indexed by column order) function to
get that, and see http://us2.php.net/mysql_query for more information.

Austin Wright.

---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss


RE: Untangle Firewall

2009-04-12 Thread Lisa Kachold

Yes, it's much better than IPCop!
I just got to half working.


> Date: Sat, 11 Apr 2009 08:55:40 -0700
> From: chip3...@netscape.net
> To: plug-discuss@lists.plug.phoenix.az.us
> Subject: Untangle Firewall
> 
> Hi,
> 
> I have never heard of this before yesterday when a new version was 
> announced on DistroWatch.  Has anyone tried this before?
> 
> I want to set up a new firewall system when I move over the summer and 
> was leaning towards IPCOP.  Looking at Untangle 
> (http://www.untangle.com/tabs) it seems like it would be a good fit as 
> well. 
> 
> Since I've never heard of it or used it I wanted to know if anyone else has.
> 
> Thanks.
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
> To subscribe, unsubscribe, or to change your mail settings:
> http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss

_
Rediscover HotmailĀ®: Get quick friend updates right in your inbox. 
http://windowslive.com/RediscoverHotmail?ocid=TXT_TAGLM_WL_HM_Rediscover_Updates1_042009---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss

RE: Ot: happy 04/12

2009-04-12 Thread Lisa Kachold

Happy Easter!
All the fine jackrabbits and Western cottontails with the sweet small chip 
monks are fairly relieved to see things warming!


Date: Sun, 12 Apr 2009 13:04:03 -0700
From: klsmith2...@yahoo.com
Subject: Re: Ot: happy 04/12
To: plug-discuss@lists.plug.phoenix.az.us


Happy Easter my brother!



Keith Smith




--- On Sun, 4/12/09, James Finstrom  wrote:

From: James Finstrom 
Subject: Ot: happy 04/12
To: "Main PLUG discussion list" 
Date: Sunday, April 12, 2009, 7:20 AM

To all who do happy easter and to all who don't happy sunday.

-- 
Sent from my mobile device

James Finstrom
Rhino Equipment Corp.
http://rhinoequipment.com ~ http://postug.com
Phone: 1-877-RHINO-T1 ~ FAX: +1 (480) 961-1826
Twitter: http://twitter.com/rhinoequipment
IP: gu...@asterisk.rhinoequipment.com
---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss


_
Rediscover HotmailĀ®: Now available on your iPhone or BlackBerry
http://windowslive.com/RediscoverHotmail?ocid=TXT_TAGLM_WL_HM_Rediscover_Mobile1_042009---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss

greeter for west side

2009-04-12 Thread der.hans
moin moin,

anyone want to volunteer to be a greeter for the west side meeting?

It mostly entails greeting those who are new and introducing them to
someone else. The goal is that newbies feel welcome and get a chance to
know others. We want people to show up again :).

I can't make it to the west side events as I teach Wednesday nights. PLUG
really needs some help to run those events.

Nathan and Scott are great for hosting the meetings for us, but they're
actually there to work. They do lots for us, but can't guarantee being
available during the meetings.

The greeter should be at the meeting at 18:30 when the doors are supposed
ot open. Helping get signs up would be great.

ciao,

der.hans
-- 
#  http://www.LuftHans.com/http://www.LuftHans.com/Classes/
#  "Common sense is nothing more than a deposit of prejudices laid down
#  by the mind before you reach eighteen."  -- Albert Einstein
---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss


Re: php mysql max() question

2009-04-12 Thread Craig White
On Sun, 2009-04-12 at 15:13 -0700, A. W. Wright wrote:
> Craig White wrote:
> > just want the max of an integer field ultimately into a variable.
> >
> >  >   $MaxSalesOrders = 'SELECT MAX(orderno) FROM salesorders;';
> >   mysql_connect("$HOST", "$USER", "$PASSWD");
> >   mysql_select_db("lighting_unlimited");
> >   $MaxSalesOrdersResult = mysql_query($MaxSalesOrders);
> >   mysql_close();
> >   echo var_dump($MaxSalesOrdersResult) . " - " . \
> >$MaxSalesOrdersResult;
> > ?>
> >
> > seems pretty straight forward. In mysqlclient, the answer is of course
> > returned - perhaps as a row, I'm never quite sure.
> >
> > The code above returns the following in a browser...
> >
> > resource(6) of type (mysql result) - Resource id #6
> >
> > and I've been trying all sorts of things 'SELECT AS...' and Googled for
> > several hours and I'm sort of convinced that what is being returned from
> > the sql query is neither an array, nor string and has to be converted
> > into a variable that is useful to me.
> >
> > Anyone know how to do this (i.e. without pear-db)?
> >
> > Craig
> >   
> mysql_query (and mysqli_query) doesn't actually give you the resuly,
> just a pointer to it. Use the mysql_fetch_assoc (returned array indexed
> by column name) or mysql_fetch_row (indexed by column order) function to
> get that, and see http://us2.php.net/mysql_query for more information.

yeah that was it. I was sort of looking at that, trying to decipher the
api of the software I was working on and then creating my own
connections out of the program so I could test bits of code. I'm easily
confused I guess.  ;-)

One thing is certain, I have been spoiled by ruby on rails and php just
seems so crude and ugly now.

Thanks

Craig


-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss


Re: php mysql max() question

2009-04-12 Thread Eric Cope
Use a PHP framework like CakePHP or CodeIgniter and life is much better...


On Sun, Apr 12, 2009 at 7:47 PM, Craig White  wrote:

> On Sun, 2009-04-12 at 15:13 -0700, A. W. Wright wrote:
> > Craig White wrote:
> > > just want the max of an integer field ultimately into a variable.
> > >
> > >  > >   $MaxSalesOrders = 'SELECT MAX(orderno) FROM salesorders;';
> > >   mysql_connect("$HOST", "$USER", "$PASSWD");
> > >   mysql_select_db("lighting_unlimited");
> > >   $MaxSalesOrdersResult = mysql_query($MaxSalesOrders);
> > >   mysql_close();
> > >   echo var_dump($MaxSalesOrdersResult) . " - " . \
> > >$MaxSalesOrdersResult;
> > > ?>
> > >
> > > seems pretty straight forward. In mysqlclient, the answer is of course
> > > returned - perhaps as a row, I'm never quite sure.
> > >
> > > The code above returns the following in a browser...
> > >
> > > resource(6) of type (mysql result) - Resource id #6
> > >
> > > and I've been trying all sorts of things 'SELECT AS...' and Googled for
> > > several hours and I'm sort of convinced that what is being returned
> from
> > > the sql query is neither an array, nor string and has to be converted
> > > into a variable that is useful to me.
> > >
> > > Anyone know how to do this (i.e. without pear-db)?
> > >
> > > Craig
> > >
> > mysql_query (and mysqli_query) doesn't actually give you the resuly,
> > just a pointer to it. Use the mysql_fetch_assoc (returned array indexed
> > by column name) or mysql_fetch_row (indexed by column order) function to
> > get that, and see http://us2.php.net/mysql_query for more information.
> 
> yeah that was it. I was sort of looking at that, trying to decipher the
> api of the software I was working on and then creating my own
> connections out of the program so I could test bits of code. I'm easily
> confused I guess.  ;-)
>
> One thing is certain, I have been spoiled by ruby on rails and php just
> seems so crude and ugly now.
>
> Thanks
>
> Craig
>
>
> --
> This message has been scanned for viruses and
> dangerous content by MailScanner, and is
> believed to be clean.
>
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
> To subscribe, unsubscribe, or to change your mail settings:
> http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss
>
---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss

Re: php mysql max() question

2009-04-12 Thread Kenny Pepiton
I myself don't trust PHP frameworks for the simple reason of 
understanding the code that goes into my site as well as understanding 
the security vulnerabilities that my own code creates.  I am not very 
fond of not knowing where my code vulnerabilities lie and waiting 
patiently for a fix in the framework to keep my sites securely coded.

Kenny


Eric Cope wrote:
> Use a PHP framework like CakePHP or CodeIgniter and life is much better...
>
>
> On Sun, Apr 12, 2009 at 7:47 PM, Craig White  > wrote:
>
> On Sun, 2009-04-12 at 15:13 -0700, A. W. Wright wrote:
> > Craig White wrote:
> > > just want the max of an integer field ultimately into a variable.
> > >
> > >  > >   $MaxSalesOrders = 'SELECT MAX(orderno) FROM salesorders;';
> > >   mysql_connect("$HOST", "$USER", "$PASSWD");
> > >   mysql_select_db("lighting_unlimited");
> > >   $MaxSalesOrdersResult = mysql_query($MaxSalesOrders);
> > >   mysql_close();
> > >   echo var_dump($MaxSalesOrdersResult) . " - " . \
> > >$MaxSalesOrdersResult;
> > > ?>
> > >
> > > seems pretty straight forward. In mysqlclient, the answer is
> of course
> > > returned - perhaps as a row, I'm never quite sure.
> > >
> > > The code above returns the following in a browser...
> > >
> > > resource(6) of type (mysql result) - Resource id #6
> > >
> > > and I've been trying all sorts of things 'SELECT AS...' and
> Googled for
> > > several hours and I'm sort of convinced that what is being
> returned from
> > > the sql query is neither an array, nor string and has to be
> converted
> > > into a variable that is useful to me.
> > >
> > > Anyone know how to do this (i.e. without pear-db)?
> > >
> > > Craig
> > >
> > mysql_query (and mysqli_query) doesn't actually give you the resuly,
> > just a pointer to it. Use the mysql_fetch_assoc (returned array
> indexed
> > by column name) or mysql_fetch_row (indexed by column order)
> function to
> > get that, and see http://us2.php.net/mysql_query for more
> information.
> 
> yeah that was it. I was sort of looking at that, trying to
> decipher the
> api of the software I was working on and then creating my own
> connections out of the program so I could test bits of code. I'm
> easily
> confused I guess.  ;-)
>
> One thing is certain, I have been spoiled by ruby on rails and php
> just
> seems so crude and ugly now.
>
> Thanks
>
> Craig
>
>
> --
> This message has been scanned for viruses and
> dangerous content by MailScanner, and is
> believed to be clean.
>
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
> 
> To subscribe, unsubscribe, or to change your mail settings:
> http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss
>
>
> 
>
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
> To subscribe, unsubscribe, or to change your mail settings:
> http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss

---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss


Re: php mysql max() question

2009-04-12 Thread Eric Cope
Isn't that the beauty of open source, you can fix it as you wish?
You trust PHP, the web server, the database, and any other software to be
secure, why draw the line between those pieces of software and frameworks?

I see it as one more layer to secure, but the beauty of frameworks is that
there are that many more eyes pouring over the code and testing it...

thoughts?

On Sun, Apr 12, 2009 at 9:13 PM, Kenny Pepiton
wrote:

> I myself don't trust PHP frameworks for the simple reason of
> understanding the code that goes into my site as well as understanding
> the security vulnerabilities that my own code creates.  I am not very
> fond of not knowing where my code vulnerabilities lie and waiting
> patiently for a fix in the framework to keep my sites securely coded.
>
> Kenny
>
>
> Eric Cope wrote:
> > Use a PHP framework like CakePHP or CodeIgniter and life is much
> better...
> >
> >
> > On Sun, Apr 12, 2009 at 7:47 PM, Craig White  > > wrote:
> >
> > On Sun, 2009-04-12 at 15:13 -0700, A. W. Wright wrote:
> > > Craig White wrote:
> > > > just want the max of an integer field ultimately into a variable.
> > > >
> > > >  > > >   $MaxSalesOrders = 'SELECT MAX(orderno) FROM salesorders;';
> > > >   mysql_connect("$HOST", "$USER", "$PASSWD");
> > > >   mysql_select_db("lighting_unlimited");
> > > >   $MaxSalesOrdersResult = mysql_query($MaxSalesOrders);
> > > >   mysql_close();
> > > >   echo var_dump($MaxSalesOrdersResult) . " - " . \
> > > >$MaxSalesOrdersResult;
> > > > ?>
> > > >
> > > > seems pretty straight forward. In mysqlclient, the answer is
> > of course
> > > > returned - perhaps as a row, I'm never quite sure.
> > > >
> > > > The code above returns the following in a browser...
> > > >
> > > > resource(6) of type (mysql result) - Resource id #6
> > > >
> > > > and I've been trying all sorts of things 'SELECT AS...' and
> > Googled for
> > > > several hours and I'm sort of convinced that what is being
> > returned from
> > > > the sql query is neither an array, nor string and has to be
> > converted
> > > > into a variable that is useful to me.
> > > >
> > > > Anyone know how to do this (i.e. without pear-db)?
> > > >
> > > > Craig
> > > >
> > > mysql_query (and mysqli_query) doesn't actually give you the
> resuly,
> > > just a pointer to it. Use the mysql_fetch_assoc (returned array
> > indexed
> > > by column name) or mysql_fetch_row (indexed by column order)
> > function to
> > > get that, and see http://us2.php.net/mysql_query for more
> > information.
> > 
> > yeah that was it. I was sort of looking at that, trying to
> > decipher the
> > api of the software I was working on and then creating my own
> > connections out of the program so I could test bits of code. I'm
> > easily
> > confused I guess.  ;-)
> >
> > One thing is certain, I have been spoiled by ruby on rails and php
> > just
> > seems so crude and ugly now.
> >
> > Thanks
> >
> > Craig
> >
> >
> > --
> > This message has been scanned for viruses and
> > dangerous content by MailScanner, and is
> > believed to be clean.
> >
> > ---
> > PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
> > 
> > To subscribe, unsubscribe, or to change your mail settings:
> > http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss
> >
> >
> > 
> >
> > ---
> > PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
> > To subscribe, unsubscribe, or to change your mail settings:
> > http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss
>
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
> To subscribe, unsubscribe, or to change your mail settings:
> http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss
>
---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss