[PHP] PHP LDAP attributes question

2003-11-20 Thread Cory Hicks
AP results as session variables $valid_user = strtolower($info[$i]["cn"][0]); $user_tier = $info[$i]["usertier"][0]; $user_tier2 = $info[$i]["usertier2"][0]; $user_fullname = $info[$i]["fullname"][0]; } //Close LDAP logi

[PHP] getting data from inside a class

2003-06-27 Thread Cory Hicks
$rows = $result->fetchRow(DB_FETCHMODE_ASSOC); $this->results = $rows[sys_time_user_id]; return $this->results; } } -- Cory Hicks <[EMAIL PROTECTED]> TRI International -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Admin Login

2003-06-11 Thread Cory Hicks
uch as delete message, edit message, > are viewable, but when someone else logs in they can't view it. Could someone guide > me to a tutorial or alike? > Thanks. -- Cory Hicks <[EMAIL PROTECTED]> TRI International -- PHP General Mailing List (http://www.php.net/) To unsub

Re: [PHP] form within form

2003-02-13 Thread Cory Hicks
> > > > > > > > Verify Password: > > > > > > > >

RE: [PHP] form within form

2003-02-13 Thread Cory Hicks
> > > > > > > > name=reset> > > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php -- Cory Hicks <[EMAIL PROTECTED]> TRI-International -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] OO newb question....query results from a class

2003-02-11 Thread Cory Hicks
et_signin(); It just returns "Array"? How do I, for lack of a better wordget to this array? Outside of a class it works great, I echo $rows['sign_in'] and it works. But this! Help! Many many thanks! Cory -- Cory Hicks <[EMAIL PROTECTED]> TRI-International -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] number of records

2002-12-10 Thread Cory Hicks
HTH! Cory On Tue, 2002-12-10 at 09:54, Diana Castillo wrote: > After I run a query lik this, > $db->query($sql); > > what is the quickest way to find out how many records result? Without having > to loop through them all? > > Thank you , > Diana > -- Cory Hicks <

Re: [PHP] Who can tell me where I can get the cracked ZendEncoder3.0 ?

2002-10-31 Thread Cory Hicks
Be gone already! On Thu, 2002-10-31 at 09:00, jianking wrote: > Who can tell me where I can get the cracked Zend Encoder 3.0 ? > > > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > -- PHP General Mailing List (http://www.ph

Re: [PHP] Text from web form

2002-09-12 Thread Cory Hicks
Rick, Someone had mentioned doing the following: << $name = $_POST['name']; $message = $_POST['message']; at the top of your script to enable the variables. >> Or, you could try this at the top of every page: global $HTTP_POST_VARS; global $HTTP_GET_VARS; and then use: $_POST["field_name"]