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] using xp home

2004-02-23 Thread Jason Merrique
Hi Danny, If you're going to be using PHP for testing purposes on your home PC, I'd recommend installing EasyPHP. It's basically Apache MySQL and PHP bundled together. It's pretty easy to set up, just run the installer, then start the program and you have a PHP enabled webserver. You should be ab

RE: [PHP] Re: ftp software

2004-02-23 Thread Jason Merrique
I second that, What I like the most about WSFTP is that you can edit files on the remote site. Very handy! > -Original Message- > From: Pooya Eslami [mailto:[EMAIL PROTECTED] > Sent: 22 February 2004 21:47 > To: [EMAIL PROTECTED] > Subject: [PHP] Re: ftp software > > WS FTP is not ba

RE: [PHP] read and modified getting data

2004-02-23 Thread Jason Merrique
> From: "Miguel J. Jiménez" [mailto:[EMAIL PROTECTED] > You must convert "\n" to and spaces to   You can use > strreplace() or some other function that exist in PHP just for that... nl2br() should do that. Usage: nl2br($foo) $foo is your textarea variable. -- PHP General Mailing List (http:

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: