[PHP] ECHO $variable

2006-10-08 Thread Ron Piggott (PHP)
In one of my scripts I have input type=text name=message_title size=40 maxlength=80 value=?echo $saved_message_title;? where $saved_message_title is 1 Peter 5:7 Cast all your cares on Him for He cares about you --- note the When this is displayed on the screen $saved_message_title reads 1

Re: [PHP] ECHO $variable

2006-10-08 Thread benifactor
you should try this... $saved_message_title = '1 Peter 5:7 Cast all your cares on Him for He cares about you'; - Original Message - From: Ron Piggott (PHP) [EMAIL PROTECTED] To: PHP General php-general@lists.php.net Sent: Saturday, October 07, 2006 11:39 PM Subject: [PHP] ECHO $variable

Re: [PHP] Unicode Problem

2006-10-08 Thread Nisse Engström
On Fri, 6 Oct 2006 10:44:55 -0500 (CDT), Richard Lynch wrote: I don't think MS Word quotes are Unicode, really... I think they're just made-up character sets that Microsoft felt like using to be incompatible with everybody else... Though the %u is almost-for-sure and ATTEMPT to apply

Re: [PHP] ECHO $variable

2006-10-08 Thread Penthexquadium
On Mon, 9 Oct 2006 00:23:00 -0700, benifactor [EMAIL PROTECTED] wrote: you should try this... $saved_message_title = '1 Peter 5:7 Cast all your cares on Him for He cares about you'; - Original Message - From: Ron Piggott (PHP) [EMAIL PROTECTED] To: PHP General

[PHP] looking for a php newsletter application ready to use

2006-10-08 Thread hicham
Hello everybody I'm looking for a newsletter soft. written in php4 to add to a website done in php4 found a lot of them on the net, can anyone advise me a good easy one ? that can administer and send newsletter from the web , if possible in french Thanks a lot hicham -- PHP General Mailing

Re: [PHP] FTP

2006-10-08 Thread Yannick Warnier
Le samedi 07 octobre 2006 à 20:50 -0300, Raphael Martins a écrit : Hi, When I send files via FTP, the file size is limited to the php.ini max upload value? Thank you! No, unless you handle the FTP server with a PHP script. php.ini only limits the size of files handled by PHP (generally via

Re: [PHP] Re: Separate PHP Code From HTML || Pros Cons?

2006-10-08 Thread Yannick Warnier
Le samedi 07 octobre 2006 à 17:24 -0400, sit1way a écrit : Hey all. Hi Noah, I've built a simple, yet effective PHP based CMS, one that I use in all sites I develop. [...] I've often heard the mantra, separate code from HTML, but it seems ridiculous at times to include tiny HTML

Re: [PHP] FTP

2006-10-08 Thread Raphael Martins
I will be sending files over my php script... One client asked me for a project where he allow clients to send some large files (like 50mb)...I thought that FTP (via PHP) will allow that. Today he just give the FTP server user and password to his clients, but he is worried about the security

Re: [PHP] FTP

2006-10-08 Thread Yannick Warnier
Le dimanche 08 octobre 2006 à 08:05 -0300, Raphael Martins a écrit : I will be sending files over my php script... One client asked me for a project where he allow clients to send some large files (like 50mb)...I thought that FTP (via PHP) will allow that. Today he just give the FTP server

Re: [PHP] ECHO $variable

2006-10-08 Thread benifactor
the way i posted worked fine with out either... he doesn't need to use these to format the way his output is displayed, he only needs to use the proper php syntax if i am correct. - Original Message - From: Penthexquadium [EMAIL PROTECTED] To: php-general@lists.php.net Sent: Sunday,

[PHP] Uploading files / processing with a PHP script

2006-10-08 Thread Ron Piggott (PHP)
When I upload a file into an application I am writing with the HTML form command INPUT NAME=userfile TYPE=file and then give the PHP command move_uploaded_file( $userfile , $destination_file_name); the owner of the file is 'www'. Is there any way I am able to automatically change the owner of

Re: [PHP] ECHO $variable

2006-10-08 Thread Chris Shiflett
Ron Piggott wrote: When this is displayed on the screen $saved_message_title reads 1 Peter 5:7 I am assuming the closes the value= How may I echo this to the screen and have the full text be displayed, not just 1 Peter 5:7 ? http://php.net/htmlentities You should really be using

Re: [PHP] ECHO $variable

2006-10-08 Thread John Wells
On 10/9/06, benifactor [EMAIL PROTECTED] wrote: the way i posted worked fine with out either... he doesn't need to use these to format the way his output is displayed, he only needs to use the proper php syntax if i am correct. But what if the string is edited to contain single quotes as well?

[PHP] Unsealing openssl_seal's data without PHP

2006-10-08 Thread William Triplett
Dear php users, Is there any way to decrypt data encrypted using openssl_seal _without_ using openssl_open, and instead using the openssl command- line tools? Here's how the data is encrypted (using openssl_seal). The function 'store_for_later()' just base64_encodes the data and writes to

[PHP] $_SERVER['HTTP_REFERER']

2006-10-08 Thread Peter Lauri
Hi guys, I am trying to track where the people entered a unique page from (developing an affiliate system). I have been using the $_SERVER['HTTP_REFERER'] to track this and record it on a affiliate entrance of the web site. However, that is not tracking all clicks. Only some of them have.

Re: [PHP] FTP

2006-10-08 Thread Stut
Raphael Martins wrote: I will be sending files over my php script... One client asked me for a project where he allow clients to send some large files (like 50mb)...I thought that FTP (via PHP) will allow that. Today he just give the FTP server user and password to his clients, but he is

Re: [PHP] Uploading files / processing with a PHP script

2006-10-08 Thread Stut
Ron Piggott (PHP) wrote: When I upload a file into an application I am writing with the HTML form command INPUT NAME=userfile TYPE=file and then give the PHP command move_uploaded_file( $userfile , $destination_file_name); the owner of the file is 'www'. Is there any way I am able to

Re: [PHP] $_SERVER['HTTP_REFERER']

2006-10-08 Thread Dave Goodchild
HTTP_REFERER is not a reliable way of capturing a remote address. Sometimes the client does not set it at all. On 08/10/06, Peter Lauri [EMAIL PROTECTED] wrote: Hi guys, I am trying to track where the people entered a unique page from (developing an affiliate system). I have been using

Re: [PHP] $_SERVER['HTTP_REFERER']

2006-10-08 Thread Stut
Peter Lauri wrote: I am trying to track where the people entered a unique page from (developing an affiliate system). I have been using the $_SERVER['HTTP_REFERER'] to track this and record it on a affiliate entrance of the web site. However, that is not tracking all clicks. Only some of them

Re: [PHP] Uploading files / processing with a PHP script

2006-10-08 Thread Larry Garfield
On Sunday 08 October 2006 13:25, Stut wrote: the owner of the file is 'www'. Is there any way I am able to automatically change the owner of the file to my FTP login identity (for example 'rpiggott') As far as I am aware only the root user can change the owner of files. You could set up

Re: [PHP] Uploading files / processing with a PHP script

2006-10-08 Thread John Wells
On 10/8/06, Ron Piggott (PHP) [EMAIL PROTECTED] wrote: the owner of the file is 'www'. Is there any way I am able to automatically change the owner of the file to my FTP login identity (for example 'rpiggott') Just curious, why do you want to do this? What are you *really* hoping to

[PHP] Apply the hyper link ( javascript functon ) with php

2006-10-08 Thread edwardspl
Dear All, How to apply the following function with php ? a href=javascript:popup('index.htm') Test /a Edward. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Apply the hyper link ( javascript functon ) with php

2006-10-08 Thread J R
echo 'a href=javascript:popup(\'index.htm\') Test /a'; On 10/9/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Dear All, How to apply the following function with php ? a href=javascript:popup('index.htm') Test /a Edward. -- PHP General Mailing List (http://www.php.net/) To unsubscribe,