RE: [PHP] php & paypal

2004-07-27 Thread Jason Merrique
You mean like the credit card number? :\ > -Original Message- > From: Mike R [mailto:[EMAIL PROTECTED] > Sent: 27 July 2004 16:12 > To: [EMAIL PROTECTED] > Subject: [PHP] php & paypal > > > Does anyone know if it is possible to pass a variable in the > URL to the return page when usin

RE: [PHP] Re: Slideshow using PHP

2004-07-09 Thread Jason Merrique
Hi Todd, Just had an idea - not sure if it will work. Can you make PHP send data as it becomes available? Given that the pictures are all the same size, and there aren't too many of them, a 'for' loop would do it: for ($i = 1; $i <= 10; $i++) { echo layer containing the picture i with

RE: [PHP] mail() to own domain not working

2004-03-17 Thread Jason Merrique
server specified by your domain's MX. Cheers, Jason -Original Message- From: Gerard L Petersen [mailto:[EMAIL PROTECTED] Sent: 17 March 2004 16:07 To: Jason Merrique Subject: Re: [PHP] mail() to own domain not working No thats a different server. - Original Message - From: &

RE: [PHP] beginners question

2004-02-24 Thread Jason Merrique
So you don't want the form data to be encoded in the url? Something like this would probably do it: That'll just display a button that when pressed will pass $var to input.php > -Original Message- > From: Steve [mailto:[EMAIL PROTECTED] > Sent: 24 February 2004 05:16 > To: [EMAIL

RE: [PHP] PHP Alternative to IFRAME?

2004-02-24 Thread Jason Merrique
You could do it this way: Put the content of the file into a variable: "; if($fp) { while(! feof($fp)) { $content .= fread($fp, 1024); } } ?> Insert the variable into a div tag: Then create a style sheet that defines the properties of the content DIV: