Re: Re[2]: [PHP] Credit Card suggestions

2002-08-13 Thread Jim Dam
MD5 encryption of passwords is secure since you do not need to decrypt the password ever (in fact you can't). You just encrypt the password that the user entered and check if the MD5 of each password is the same, then the user most likely entered the correct password. - Original Message

Re: [PHP] parse URL good syntaxe please

2002-08-13 Thread Jim Dam
Try taking a look at this tutorial for PHP. http://www.php.net/manual/en/tutorial.php - Original Message - From: "Christian Ista" <[EMAIL PROTECTED]> To: "'php list'" <[EMAIL PROTECTED]> Sent: Tuesday, August 13, 2002 10:32 AM Subject: RE: [PHP] parse URL good syntaxe please > > First

Re: [PHP] parse URL good syntaxe please

2002-08-13 Thread Jim Dam
First of all, you need to use the $_* superglobals if register_globals is off. That is, to access get variables, you use $_GET['variable_name'] To check if the variable is set, use the isset function. if (IsSet($_GET['variable']) { // code } else { //error } - Original Message - From:

Re: [PHP] Garbage .html via HTTP/1.0 or Proxy

2002-08-12 Thread Jim Dam
Are you using gzip compression? Maybe the browser you are using doesn't support gzip. - Original Message - From: "Kelvin Lawson" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, August 12, 2002 4:55 PM Subject: [PHP] Garbage .html via HTTP/1.0 or Proxy Hi All, When connecting

Re: [PHP] Can I perform a PHP script from a form but stay on the same page afterwards?

2002-08-09 Thread Jim Dam
a form but stay on the same page afterwards? >You can send a 204 No Content header, and the browser won't move to the new >page, but instead the PHP script will be executed and the browser will stay >on the same page. could you gimmie a code snippet of the above Thanks R> > >

Re: [PHP] Can I perform a PHP script from a form but stay on the same page afterwards?

2002-08-09 Thread Jim Dam
You can send a 204 No Content header, and the browser won't move to the new page, but instead the PHP script will be executed and the browser will stay on the same page. Jim Dam [EMAIL PROTECTED] - Original Message - From: "César Aracena" <[EMAIL PROTECTED]> T

[PHP] __functionName?

2002-08-03 Thread Jim Dam
having any wierd effects from the double underscore? Jim Dam [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php