[PHP] Session Logout Problems

2004-03-09 Thread Bob Irwin
Regards, Bob Irwin Server Admin Web Apps I'm a Brick! Scanned by PeNiCillin http://safe-t-net.pnc.com.au/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Session Logout Problems

2004-03-09 Thread Bob Irwin
true; onmouseout=status='';Purge Deleted/a Regards, Bob Irwin Server Admin Web Apps I'm a Brick! - Original Message - From: Richard Davey [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, March 10, 2004 10:20 AM Subject: Re: [PHP] Session Logout Problems Hello Bob

Re: [PHP] Sessions Question

2003-06-27 Thread Bob Irwin
Oops. Forgot to remove the Re: - it was a new thread - I just replied to an old message to get the php list email address then managed to stuff the subject up. Thanks for the help though! Best Regards Bob Irwin *** Email [EMAIL PROTECTED] for speedy email response *** - Original Message

[PHP] Sessions Question

2003-06-26 Thread Bob Irwin
Aside from the fact that bad code can obviously make sessions hackable, what does everyone think about the security of sessions? I rely on them fairly heavily for low-mid range security on some of my scripts, but if I was to do something that involved more sensitive info, are sessions bullet

[PHP] Access DB PHP

2003-03-16 Thread Bob Irwin
'); $sql = SELECT * FROM tbl_name ; $result = $conn-Execute($sql); // deal with the database generated information $result-Close() $conn-Close Is there a better way to do this? Best Regards Bob Irwin Server Admin Web Programmer Planet Netcom -- PHP General Mailing List (http

Re: [PHP] strange behaviour with login page

2003-03-09 Thread Bob Irwin
(also fixed a few mysql query caching problems we were having too - caused a few GD ones though). My guess is that its some sort of cookies problem with windows IE 6 (as that was the only browser I saw the problem on). Best Regards Bob Irwin Server Admin Web Programmer Planet Netcom If anyone has

Re: [PHP] strange behaviour with login page

2003-03-09 Thread Bob Irwin
In my case, it was a https website. However, in testing, it was happening on a normal http website as well. It was something I ruled out trying to find the problem. Best Regards Bob Irwin Server Admin Web Programmer Planet Netcom - Original Message - From: Andre Dubuc [EMAIL PROTECTED

Re: [PHP] fopen and file dump to a databace...

2003-03-09 Thread Bob Irwin
. echoIndex: $barry Value: $tbone BR; //just insert into the database what you need to. } Best Regards Bob Irwin Server Admin Web Programmer Planet Netcom - Original Message - From: Mark Tehara [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, March 10, 2003 1:02 PM

Re: [PHP] array question

2003-02-24 Thread Bob Irwin
of code, like a string function, but I'm buggered if I can find it! Best Regards Bob Irwin Server Admin Web Programmer Planet Netcom Scanned by PeNiCillin http://safe-t-net.pnc.com.au/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] php_mcrypt.dll

2003-02-20 Thread Bob Irwin
/ref.mcrypt.php Best Regards Bob Irwin Server Admin Web Programmer Planet Netcom - Original Message - From: Daniel Guerrier [EMAIL PROTECTED] To: php user group [EMAIL PROTECTED] Sent: Friday, February 21, 2003 4:12 PM Subject: [PHP] php_mcrypt.dll I'm trying to use the mcrypt function

[PHP] Reading Directory in reverse

2003-01-22 Thread Bob Irwin
$default_dir); while($file = readdir($dp)) if($file != '.' $file != '..') echoa href='opendir.php?opendir=$file'$file/aBR; closedir($dp); Best Regards Bob Irwin Server Admin Web Programmer Planet Netcom -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] URL hiding

2002-11-26 Thread Bob Irwin
There may be an easier way, but I usually use sessions when I want to pass variables around that I want to remain hidden, but want to use links. Best Regards Bob Irwin Server Admin Web Programmer Planet Netcom - Original Message - From: Kris [EMAIL PROTECTED] Cc: PHP-General [EMAIL

[PHP] Seconds to minutes

2002-11-19 Thread Bob Irwin
or input would be appreciated. Best Regards Bob Irwin Server Admin Web Programmer Planet Netcom Scanned by PeNiCillin http://safe-t-net.pnc.com.au/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Seconds to minutes

2002-11-19 Thread Bob Irwin
be the go to do it right the first time. Anyone else know of a better way? Best Regards Bob Irwin Server Admin Web Programmer Planet Netcom - Original Message - From: John W. Holmes [EMAIL PROTECTED] To: 'Matt' [EMAIL PROTECTED]; 'Bob Irwin' [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Wednesday

Re: [PHP] if conditional

2002-10-15 Thread Bob Irwin
If the code isn't working, its because you weren't using a $name in the first if statement. Always the little things ! :) But this should work... if (!$name) { print Pplease enter your name.; } if (!$email) { print PPlease enter you e-mail; } Hello, I would like to how to know

[PHP] Speeding up a Mysql Select

2002-10-08 Thread Bob Irwin
begintime between 'timestamp1' and 'timestamp2'; It takes a while to execute... The timestamp fieldtype is varchar(10)... Will I see any speed difference with a different column type? Any advice on how to speed this up would be greatly appreciated! :) Best Regards Bob Irwin Server Admin Web Programmer

Re: [PHP] Cookie

2002-10-02 Thread Bob Irwin
I'm pretty sure this is a global variables problem. There is an option in your ini.php file that refers to 'global variables' You need to set this on, otherwise reference to them with the absolute variable name. Best Regards Bob Irwin Server Admin Web Programmer Planet Netcom - Original

Re: [PHP] PHP and Flash

2002-10-01 Thread Bob Irwin
assuming it's still in dev. Netscape 6.2.3 works as well. Mozilla loads the horse, but doesn't load the textbox for some reason. Best Regards Bob Irwin Server Admin Web Programmer Planet Netcom - Original Message - From: Peter Houchin [EMAIL PROTECTED] To: Rebekah Garner [EMAIL PROTECTED

[PHP] Multiple Tables Select

2002-09-30 Thread Bob Irwin
ideas what I'm doing wrong? Any help is greatly appreciated. Been staring at the monitor for a while dribbling :) Best Regards Bob Irwin Server Admin Web Programmer Planet Netcom -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] I don't want multiple form submitted

2002-09-26 Thread Bob Irwin
. Best Regards Bob Irwin Server Admin Web Programmer Planet Netcom - Original Message - From: John Holmes [EMAIL PROTECTED] To: 'Clemson Chan' [EMAIL PROTECTED]; 'Php' [EMAIL PROTECTED] Sent: Friday, September 27, 2002 9:13 AM Subject: RE: [PHP] I don't want multiple form submitted I have

[PHP] HT authentication question

2002-09-24 Thread Bob Irwin
G'day, Is there a PHP function/method that destroys or expires a HT authentication session? So, for example, you're using a .htaccess file to control access to a directory on a server, is there a way to destroy that session without closing the browser window? Best Regards Bob Irwin Server

Re: [PHP] Encryption of emails.

2002-09-05 Thread Bob Irwin
: Justin French [EMAIL PROTECTED] To: Bob Irwin [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Thursday, September 05, 2002 4:00 PM Subject: Re: [PHP] Encryption of emails. Perhaps not EXACTLY what you're after, but I wrote a small, simple function to encrypt a string with a key (i'll skip a long note

[PHP] Encryption of emails.

2002-09-04 Thread Bob Irwin
appreciated! Best Regards Bob Irwin Server Admin Web Programmer Planet Netcom -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Further Security Clarifications [was: Simple Security Clarifcation]

2002-08-21 Thread Bob Irwin
/filename.php); Works for me assuming I have the right permissions. Best Regards Bob Irwin Server Admin Web Programmer Planet Netcom - Original Message - From: Andre Dubuc [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, August 22, 2002 11:19 AM Subject: [PHP] Further Security Clarifications

Re: [PHP] Further Security Clarifications [was: Simple Security Clarifcation]

2002-08-21 Thread Bob Irwin
Thanks Bob, Got a 404: File not Found. Checked the ssl_error_log as suggested, and found a rather interesting entry: No such file: /var/www/html/var/www/secure/test.php Ahhh - ok - I thought you were including them internally from PHP. You are actually linking to the file being SERVED by

Re: [PHP] Session problems: Warning: write failed: Disk quota exceeded

2002-08-21 Thread Bob Irwin
of applications on a hosting server that might use /tmp to store temporary files, so I suppose it is possible that something has filled /tmp up and PHP simply can't write to it because there is no where to write to! Call your host is my advice. Best Regards Bob Irwin Server Admin Web Programmer Planet

Re: [PHP] Dumb question

2002-08-21 Thread Bob Irwin
You need to declare $vari as a global variable. eg; ? function getvar() { global $vari; $vari = bollocks; } getvar(); echo $vari; ? Best Regards Bob Irwin Server Admin Web Programmer Planet Netcom - Original Message - From: Liam MacKenzie [EMAIL PROTECTED] To: [EMAIL PROTECTED

Re: [PHP] MySQL vs Session?

2002-08-15 Thread Bob Irwin
. Best Regards Bob Irwin Server Admin Web Programmer Planet Netcom -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Some questions.

2002-08-12 Thread Bob Irwin
this (haven't got around to installing it). Best Regards Bob Irwin Server Admin Web Programmer Planet Netcom - Original Message - From: Justin French [EMAIL PROTECTED] To: mintbaggio [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Tuesday, August 13, 2002 12:21 PM Subject: Re: [PHP] Some

[PHP] Session Problems

2002-07-30 Thread Bob Irwin
on other pages in the same directory, with exactly the same code Best Regards Bob Irwin Server Admin Web Programmer Planet Netcom -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Session problems based on browser?

2002-06-18 Thread Bob Irwin
G'day, I'm using scripts that are using sessions. A user logs into a main page with a master list of database entries. They go to another page, add a new database entry and it appears on the master list. The user adds another database entry and upon going back to the master list, the new

Re: [PHP] Session problems based on browser?

2002-06-18 Thread Bob Irwin
Thanks for the info Chris. Its causing me some serious headaches. IE just refuses to release the old information. Best Regards Bob (Coffee + Laptop = KABOOM!) Irwin Server Admin Web Programmer Planet Netcom - Original Message - From: Chris Shiflett [EMAIL PROTECTED] To: Bob Irwin

Re: [PHP] Session problems based on browser?

2002-06-18 Thread Bob Irwin
function at all BTW. Best Regards Bob (Coffee + Laptop = KABOOM!) Irwin Server Admin Web Programmer Planet Netcom - Original Message - From: Chris Shiflett [EMAIL PROTECTED] To: Bob Irwin [EMAIL PROTECTED] Cc: php-general [EMAIL PROTECTED] Sent: Wednesday, June 19, 2002 11:36 AM Subject: Re

Re: [PHP] Session problems based on browser?

2002-06-18 Thread Bob Irwin
this. Isn't there a way for PHP to send refresh header if the visit is beign made after the last update date stored maybe in a DB or file??? -Original Message- From: Bob Irwin [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 18, 2002 8:57 PM To: php-general Subject: [PHP] Session problems