Search found 7 matches

by james_k
Tue Nov 01, 2005 1:56 pm
Forum: PHP - Security
Topic: passing session data to remote frame resource
Replies: 3
Views: 1996

via URL is scary to me... was hoping I could avoid doing POST too, but I guess that's the quick way of doing it. Still not entirely safe though -- anyway Thanks. When I get the chance I'll be redesigning this thing to use a central LDAP server. Any reccommended reading for using LDAP with PHP? All t...
by james_k
Tue Nov 01, 2005 1:33 pm
Forum: PHP - Security
Topic: passing session data to remote frame resource
Replies: 3
Views: 1996

passing session data to remote frame resource

The scenario is an extranet that uses a single sign-on to log the user into various web applications. The landing page on login is a 3-frame page and starts a session with some basic variables. I'm just curious how remote-resources in a frame are handled in the session -- are they a part of the acti...
by james_k
Tue Jul 05, 2005 9:54 am
Forum: Javascript
Topic: Vertical Centering in CSS
Replies: 6
Views: 729

or give the container the table property.

a good site for CSS layouts and the various browser bugs --

Position is Everything
by james_k
Fri Jun 17, 2005 3:28 pm
Forum: General Discussion
Topic: What's your favourite PHP Editor?
Replies: 533
Views: 235138

I used an evaluation copy of Zend Pro -- was pretty nice.

Though for many reasons, I chose to use the Eclipse platform for my organization.
by james_k
Mon May 30, 2005 9:56 am
Forum: PHP - Code
Topic: OOP class member issue
Replies: 4
Views: 527

Okay, well perhaps I wasn't quite clear. A second look at the var_dump($tmsh) does indeed show that it contains the timesheet object and an array of variables. I've been digging through the online php docs over the weekend, etc -- but I still look at that one line in foo.php and can't quite figure o...
by james_k
Fri May 27, 2005 10:45 am
Forum: PHP - Code
Topic: OOP class member issue
Replies: 4
Views: 527

looks to me that $tmsh never got instantiated correctly, try var_dumping $tmsh and see if it represents the correct object I think you might be right then. var_dump($tmsh) outputs an array getProjects sounds like it does not exist in that class...did you spell everything correctly (capitalization c...
by james_k
Thu May 26, 2005 2:22 pm
Forum: PHP - Code
Topic: OOP class member issue
Replies: 4
Views: 527

OOP class member issue

Please consider: require(&quote;common_inc.php&quote;); // List all projects if the user is an admin or accountant if ($tmsh->user_level==&quote;Admin&quote; || $tmsh->user_level==&quote;Acctg&quote;) { $project=$tmsh->getProjects($order,$desc); //note th...