RE: [PHP] All URL's calling one script

2001-05-24 Thread Leavell Digital Design
Here is a good article on that topic: http://www.phpbuilder.com/columns/tim2526.php3 Note: if you have to use the appoach, php must be running as a module. Kevin Leavell Leavell Digital Design Inc. P 406.829.8989 C 406.240.4595 ---> -Original Message- ---> From: Ron [

RE: [PHP] SSL and CURL question --

2001-05-15 Thread Leavell Digital Design
Can't help you with your code but, you may want to check out the snoopy class at Sourceforge.net. http://sourceforge.net/projects/snoopy/ It uses ssl and cURL. Works pretty well. Kevin Leavell Leavell Digital Design Inc. P 406.829.8989 C 406.240.4595 ---> -Original Message- -

RE: [PHP] prompts

2001-03-14 Thread Leavell Digital Design
"; print "Please Enter Your Name:"; print ""; print ""; print ""; } ?> Kevin Leavell [EMAIL PROTECTED] P 406.829.8989 C 406.240.4595 ---> -Original Message- ---> From: Gary [mailto:[EMAIL PROTECTED]] ---> Sent: Wednesday, March 14, 2001 1:13 PM ---> To: [EMAIL PROTECTED] ---> Subject: [

[PHP] RE: software localization with PHP

2001-03-14 Thread Leavell Digital Design
--> $greeting = "$first_name, welcome!" ---> as opposed to, ---> $greeting = "Welcome, $first_name!" ---> ---> Or, it can come in a different form, like, ---> $greeting = "Good morning, $first_name." ---> ---> These specificity need to

RE: [PHP] Setting up test station on win 95

2001-03-13 Thread Leavell Digital Design
http://sourceforge.net/projects/phptriad/ There is also a tutorial over at phpbuilder.com You can set up different vhosts on your local win machine for each client if the need comes up. Kevin Leavell [EMAIL PROTECTED] P 406.829.8989 C 406.240.4595 ---> -Original Message- ---> From: Den

RE: [PHP] Multi-Step Script

2001-03-13 Thread Leavell Digital Design
Good point Kevin Leavell [EMAIL PROTECTED] P 406.829.8989 C 406.240.4595 ---> -Original Message- ---> From: Jason Murray [mailto:[EMAIL PROTECTED]] ---> Sent: Tuesday, March 13, 2001 11:59 PM ---> To: 'Leavell Digital Design'; [EMAIL PROTECTED] ---> Subject: RE

FW: [PHP] Multi-Step Script

2001-03-13 Thread Leavell Digital Design
use if statements if( $submit ){ print "I love Montana"; >>>put form #2 in here w/ action = $PHP_SELF make sure you set $submit2 to some value ) elseif( $submit2 ){ print "Part two of script"; } else{ >>>put your form in here w/ action= $PHP_SELF } This is a quicky but hopefully you get the idea

RE: [PHP] software localization with PHP

2001-03-13 Thread Leavell Digital Design
You can use constants: in your language file define("HELLO", OLA); in your script which includes the language file you can write $greeting = HELLO . " $first_name"; print $greeting; Kevin Leavell [EMAIL PROTECTED] P 406.829.8989 C 406.240.4595 ---> -Original Message- ---> From: Tao