[PHP] is PHP4.0.3 on a commercial webserver Justifiable ?

2002-02-26 Thread John Cuthbert
My Webhost, www.easily.co.uk wou.ld appear to be running PHP 4.0.3 even although PHP 4.1.1 is out. (www.jsa3d.co.uk/test.php) as you can see. I will be writing to them about this as I belive it is a factor leading to why i need to recode when going from my local server (php4.1.1 apache) to there

Re: [PHP] is PHP4.0.3 on a commercial webserver Justifiable ?

2002-02-26 Thread John Cuthbert
tion why they should stick with PHP 4.0.3, because they might have to re-code alot, and their clients might have to recode alot!. Also their admins may work on the principle that if it works why change. Andrew - Original Message - From: John Cuthbert [EMAIL PROTECTED] To: [EMAIL PROTECTE

[PHP] Ughh not a cookie :(

2002-02-23 Thread John Cuthbert
Below is included part of a script for a polls (simple yes no) I am trying to use cookies to determin if they have already voted or not. No errors are displaed but, I have tried to vote, and it gives no errors, nor does it give an increase in the database, fine you might think its doing its job

[PHP] Re: php login scripts

2002-01-27 Thread John Cuthbert
$user = $HTTP_GET_VARS[user]; $pass = $HTTP_GET_VARS[pass]; $real = superduperunlieklytobeguesedpass; if($user == $validuser $pass == $real) { echo thank you for logging in here is the page; ? HTML etc ?php } else { die(You supid idiot thats not a valid login); ? and call the page as

[PHP] include with call

2002-01-13 Thread John Cuthbert
Hello, I have a file which does several different things depending on how its called Ie file?mode=show is to show it etc But I want to include the output from the show so I tried ?php include(file.php?mode=show); ? but this causes errors. It goes away with including as only file.php but doing

[PHP] Decryption

2002-01-13 Thread John Cuthbert
Is there a method for decrypting encrypted things by md5? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP] Re: include with call

2002-01-13 Thread John Cuthbert
Thanks :) Cc Zona [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... In article [EMAIL PROTECTED], [EMAIL PROTECTED] (John Cuthbert) wrote: I have a file which does several different things depending on how its called Ie file?mode=show is to sho