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 using paypal?

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
the 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: Jason

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: ?php $fp = fopen($filename, r); $content = !-- Insert Start --; if($fp) { while(! feof($fp)) { $content .= fread($fp, 1024); } } ? Insert the variable into a div tag: div id=content ?php echo $content; ? /div

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: form action=input.php method=post enctype=multipart/form-data name=form input name=Stock type=hidden value=$var input name=button type=submit value=Click to add /form That'll just display a

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

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 bad.you

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 br and spaces to nbsp; 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