[PHP] Please help to unsubscribe

2011-08-27 Thread Eli Orr
The advised email to unsubscribe does not work: php-general-unsubscr...@lists.php.net Thanks Eli -- -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Please help to unsubscribe

2011-08-27 Thread Daniel P. Brown
On Sat, Aug 27, 2011 at 15:45, Eli Orr eli@logodial.com wrote: The advised email to unsubscribe does not work: php-general-unsubscr...@lists.php.net It should work just fine, but I had checked and I don't even see any subscribers to the General mailing list with 'logodial' anywhere in

Re: [PHP] Please help with glob

2011-04-05 Thread Louis Huppenbauer
Hi there Since glob is actually a part of the core - Are you absolutely sure that you're running PHP 4.3 2011/4/5 Al Mangkok almang...@gmail.com: Hi everyone, I am very new to PHP and trying to learn the glob() function. I copied the example on php.net : ?php foreach (glob(*.txt) as

Re: [PHP] Please help with glob

2011-04-05 Thread Al Mangkok
Hi Louis, Yes, I have read that glob is only available for PHP 4.3 and I am using version 5.2.1.7 # /usr/local/bin/php -v PHP 5.2.17 (cli) (built: Feb 16 2011 15:41:35) Copyright (c) 1997-2010 The PHP Group Zend Engine v2.2.0, Copyright (c) 1998-2010 Zend Technologies with Zend Optimizer

Re: [PHP] Please help with glob

2011-04-05 Thread Al Mangkok
Yesterday I yum installed these: glibc-common.i386 2.3.4-2.54 glibc.i686 2.3.4-2.54 glibc-headers.i386 2.3.4-2.54 glibc-devel.i386 2.3.4-2.54 And about ten minutes ago I recompiled PHP with identical configure options as before. And this time the glob function is inside PHP. Phew. Hopefully

[PHP] Please help with glob

2011-04-04 Thread Al Mangkok
Hi everyone, I am very new to PHP and trying to learn the glob() function. I copied the example on php.net : ?php foreach (glob(*.txt) as $filename) { echo $filename size . filesize($filename) . \n; } ? When I ran the script, I got this error message: Fatal error: Call to undefined function

Re: [PHP] please help with regular expression in preg_replace

2009-10-30 Thread Red
Message - From: Jim Lucas li...@cmsws.com To: Red r...@you.sk Cc: php-general@lists.php.net Sent: Friday, October 30, 2009 12:33 AM Subject: Re: [PHP] please help with regular expression in preg_replace Red wrote: hello, im not a php developer, i just need to rewrite one php file

[PHP] please help with regular expression in preg_replace

2009-10-29 Thread Red
hello, im not a php developer, i just need to rewrite one php file but having problem with understanding syntax of regexp in php. i need to get domain name from fqdn (for example from $_SERVER['HTTP_HOST'] ) in sed its working well with s/[^.]*\.// , but preg_replace behaves weird. http_host

Re: [PHP] please help with regular expression in preg_replace

2009-10-29 Thread Andy Shellam (Mailing Lists)
Hi Rene, This looks suspiciously like regex's greedy behaviour - it will gobble up everything that matches until you tell it otherwise. For example, your regex is matching any character that isn't a dot, followed by a dot. In host.domain.com, both host. and domain. match this regex - and

Re: [PHP] please help with regular expression in preg_replace

2009-10-29 Thread Jim Lucas
Red wrote: hello, im not a php developer, i just need to rewrite one php file but having problem with understanding syntax of regexp in php. i need to get domain name from fqdn (for example from $_SERVER['HTTP_HOST'] ) in sed its working well with s/[^.]*\.// , but preg_replace behaves

RE: [PHP] Please Help Me ASAP

2009-04-10 Thread abdulazeez alugo
Date: Fri, 10 Apr 2009 08:33:10 +0530 From: usang...@gmail.com To: php-general@lists.php.net Subject: [PHP] Please Help Me ASAP Hello, I'm building my own website without any knowledge of PHP, i'm almost done with that..as my website works fine on my local server i:e WAMPSERVER 2.0

Re: [PHP] Please Help Me ASAP

2009-04-10 Thread Bipin Upadhyay
kunal sharma wrote: Hello, I'm building my own website without any knowledge of PHP, i'm almost done with that..as my website works fine on my local server i:e WAMPSERVER 2.0, but the same code is not working on server...n i'm rilli 'd of coz of that... The error is :PHP Parse error:

Re: [PHP] Please Help Me ASAP

2009-04-10 Thread Jignesh Thummar
whenever you want to print HTMLs in your code you don't need to call echo or print everytime. You can use plain HTML in your php code this way. ?php //php code ? your HTML code ?php //php code ? your HTML code or you can use HEREDOC to print long string ( http://in.php.net/types.string) -

[PHP] Please Help Me ASAP

2009-04-09 Thread kunal sharma
Hello, I'm building my own website without any knowledge of PHP, i'm almost done with that..as my website works fine on my local server i:e WAMPSERVER 2.0, but the same code is not working on server...n i'm rilli 'd of coz of that... The error is :PHP Parse error: syntax error, unexpected

Re: [PHP] Please Help Me ASAP

2009-04-09 Thread Jason Pruim
Jason Pruim On Apr 9, 2009, at 11:03 PM, kunal sharma usang...@gmail.com wrote: Hello, I'm building my own website without any knowledge of PHP, i'm almost done with that..as my website works fine on my local server i:e WAMPSERVER 2.0, but the same code is not working on server...n i'm

Re: [PHP] PLEASE help, this is driving me crazy - is saveHTML() etc not UTF-8 capable?

2009-02-18 Thread Addmissins Development
mike wrote: On Tue, Feb 17, 2009 at 4:26 PM, mike mike...@gmail.com wrote: i tried that kind of stuff - it did not seem to work. i will try again... if anyone has any ideas i.e. use iconv to convert to A, then use DOM stuff, then use iconv to move it back to UTF8... etc. i am all ears.

[PHP] PLEASE help, this is driving me crazy - is saveHTML() etc not UTF-8 capable?

2009-02-17 Thread mike
Pardon the messy code, but I got this working like a charm. Then I went to try it on some Russian content and it broke. The inbound was utf-8 encoded Russian characters, output was something else unintelligible. I found a PHP bug from years ago that sounded related but the user had a workaround.

Re: [PHP] PLEASE help, this is driving me crazy - is saveHTML() etc not UTF-8 capable?

2009-02-17 Thread Nathan Nobbe
On Tue, Feb 17, 2009 at 12:40 PM, mike mike...@gmail.com wrote: Pardon the messy code, but I got this working like a charm. Then I went to try it on some Russian content and it broke. The inbound was utf-8 encoded Russian characters, output was something else unintelligible. I found a PHP

Re: [PHP] PLEASE help, this is driving me crazy - is saveHTML() etc not UTF-8 capable?

2009-02-17 Thread mike
i tried that kind of stuff - it did not seem to work. i will try again... if anyone has any ideas i.e. use iconv to convert to A, then use DOM stuff, then use iconv to move it back to UTF8... etc. i am all ears. On Tue, Feb 17, 2009 at 12:46 PM, Nathan Nobbe quickshif...@gmail.com wrote: On

Re: [PHP] PLEASE help, this is driving me crazy - is saveHTML() etc not UTF-8 capable?

2009-02-17 Thread mike
On Tue, Feb 17, 2009 at 4:26 PM, mike mike...@gmail.com wrote: i tried that kind of stuff - it did not seem to work. i will try again... if anyone has any ideas i.e. use iconv to convert to A, then use DOM stuff, then use iconv to move it back to UTF8... etc. i am all ears. Nope - for

[PHP] Please Help with simple Noob problem

2007-01-11 Thread Scott Bounds
Hello all. I seem to be having a terrible tim ewith something that is so simple it makes me sick. I have a server running FC2. it has Apache 2.x.x on it and it came installed with php-4.x.x. Sorry I don't have the exact versions but fatigue and frustration has taken over. I can get them if

Re: [PHP] Please Help with simple Noob problem

2007-01-11 Thread Stut
Scott Bounds wrote: Hello all. I seem to be having a terrible tim ewith something that is so simple it makes me sick. I have a server running FC2. it has Apache 2.x.x on it and it came installed with php-4.x.x. Sorry I don't have the exact versions but fatigue and frustration has taken

Re: [PHP] Please Help with simple Noob problem

2007-01-11 Thread Jochem Maas
Scott Bounds wrote: Hello all. I seem to be having a terrible tim ewith something that is so simple it makes me sick. I have a server running FC2. it has Apache 2.x.x on it and it came installed with php-4.x.x. Sorry I don't have the exact versions but fatigue and frustration has taken

Re: [PHP] Please Help with simple Noob problem

2007-01-11 Thread Miles Thompson
At 11:39 AM 1/11/2007, Scott Bounds wrote: Hello all. I seem to be having a terrible tim ewith something that is so simple it makes me sick. I have a server running FC2. it has Apache 2.x.x on it and it came installed with php-4.x.x. Sorry I don't have the exact versions but fatigue and

Re: [PHP] Please Help with simple Noob problem

2007-01-11 Thread Scott Bounds
Jochem Maas wrote: Scott Bounds wrote: Hello all. I seem to be having a terrible tim ewith something that is so simple it makes me sick. I have a server running FC2. it has Apache 2.x.x on it and it came installed with php-4.x.x. Sorry I don't have the exact versions but fatigue and

Re: [PHP] Please Help with simple Noob problem

2007-01-11 Thread Dave Goodchild
Why not check php.ini to see whether display_errors is set to off and switch it on until you are back in business? Check the httpd.conf file to make sure Apache is parsing .php files correctly.

Re: [PHP] Please Help with simple Noob problem

2007-01-11 Thread David Giragosian
Well, actually I don't see anything. Nothing at all (in the case of the phpinfo() page. All the page has in it is just ?php phpinfo() ?. It was saved as test.php. How can I tell if something is broken and where do I look for the files? I haven't done any dorking around with the links, etc.

Re: [PHP] Please Help with simple Noob problem

2007-01-11 Thread Scott Bounds
Scott Bounds wrote: Jochem Maas wrote: Scott Bounds wrote: Hello all. I seem to be having a terrible tim ewith something that is so simple it makes me sick. I have a server running FC2. it has Apache 2.x.x on it and it came installed with php-4.x.x. Sorry I don't have the exact versions

Re: [PHP] Please Help with simple Noob problem

2007-01-11 Thread Scott Bounds
David Giragosian wrote: Well, actually I don't see anything. Nothing at all (in the case of the phpinfo() page. All the page has in it is just ?php phpinfo() ?. It was saved as test.php. How can I tell if something is broken and where do I look for the files? I haven't done any dorking

Re: [PHP] Please Help with simple Noob problem

2007-01-11 Thread Scott Bounds
Dave Goodchild wrote: Why not check php.ini to see whether display_errors is set to off and switch it on until you are back in business? Check the httpd.conf file to make sure Apache is parsing .php files correctly. hi Dave. let me check in the ini file and see. I'll reply as soon as I

RE: [PHP] Please Help with simple Noob problem

2007-01-11 Thread bruce
... -Original Message- From: Scott Bounds [mailto:[EMAIL PROTECTED] Sent: Thursday, January 11, 2007 8:30 AM To: php-general@lists.php.net Subject: Re: [PHP] Please Help with simple Noob problem David Giragosian wrote: Well, actually I don't see anything. Nothing at all (in the case

Re: [PHP] Please Help with simple Noob problem

2007-01-11 Thread Stut
Please keep it on-list. Scott Bounds wrote: by the way, I did view source and it seemed to recognize the opening php tag (?php) but didn't recognize the closing tag (?). I am assuming that in that evidently FC2 likes to color code the tags (php is with purple) and it had the opening tag

Re: [PHP] Please Help with simple Noob problem

2007-01-11 Thread Scott Bounds
served... -Original Message- From: Scott Bounds [mailto:[EMAIL PROTECTED] Sent: Thursday, January 11, 2007 8:30 AM To: php-general@lists.php.net Subject: Re: [PHP] Please Help with simple Noob problem David Giragosian wrote: Well, actually I don't see anything. Nothing at all

RE: [PHP] Please Help with simple Noob problem

2007-01-11 Thread bruce
to include #!/usr/bin/php as the 1st line... -Original Message- From: Scott Bounds [mailto:[EMAIL PROTECTED] Sent: Thursday, January 11, 2007 8:50 AM To: php-general@lists.php.net Subject: Re: [PHP] Please Help with simple Noob problem bruce wrote: hi scott. tell us, have you been able

RE: [PHP] Please Help with simple Noob problem

2007-01-11 Thread Arno Kuhl
-Original Message- From: Scott Bounds [mailto:[EMAIL PROTECTED] Sent: 11 January 2007 06:21 To: php-general@lists.php.net Subject: Re: [PHP] Please Help with simple Noob problem Jochem Maas wrote: Scott Bounds wrote: Hello all. I seem to be having a terrible tim ewith something

Re: [PHP] Please Help with simple Noob problem

2007-01-11 Thread Raphael Martins
Use ?php phpinfo()? instead of ?phpinfo()?, or try to add some space after the ? . The php usually comes with the short_tags directive turned off. Good Luck Scott Bounds wrote: Hello all. I seem to be having a terrible tim ewith something that is so simple it makes me sick. I have a server

Re: [PHP] Please Help with simple Noob problem

2007-01-11 Thread Scott Bounds
Arno, you nailed it right on the head. You and someone else told me that. I am glad that you did because that is exactly what the problem was. Thanks for being patient and understanding. Scott -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] Please Help with simple Noob problem

2007-01-11 Thread Scott Bounds
Bruce, thanks fro your help but I found out what stupid noob thing I was doing. I had been doing the File/Open File/test.php Janet had gotten to me and do http://localhost/test.php. Big world of difference. trying to learn why but that made all the difference. Worked great then. Thanks

RE: [PHP] Please Help with simple Noob problem

2007-01-11 Thread Arno Kuhl
-Original Message- From: Scott Bounds [mailto:[EMAIL PROTECTED] Sent: 11 January 2007 07:16 To: php-general@lists.php.net Subject: Re: [PHP] Please Help with simple Noob problem Arno, you nailed it right on the head. You and someone else told me that. I am glad that you did because

[PHP] Please help me

2007-01-02 Thread Anju Prasad
When I send a mail using php using mail(), and using html tags in message body , these tags are being displayed as it is. Please let me know if there's any way of how to tackle with this.

RE: [PHP] Please help me

2007-01-02 Thread zoticaic
-- My Seeding Blog | http://bytes.nullp0inter.com Hire me as Freelancer | http://www.getafreelancer.com/affiliates/shockx/ -Original Message- From: Anju Prasad [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 02, 2007 5:13 PM To: php-general@lists.php.net Subject: [PHP] Please

Re: [PHP] Please help me

2007-01-02 Thread Anju Prasad
PROTECTED] Sent: Tuesday, January 02, 2007 5:13 PM To: php-general@lists.php.net Subject: [PHP] Please help me When I send a mail using php using mail(), and using html tags in message body , these tags are being displayed as it is. Please let me know if there's any way of how to tackle

Re: [PHP] Please help me

2007-01-02 Thread Stut
://www.getafreelancer.com/affiliates/shockx/ -Original Message- From: Anju Prasad [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 02, 2007 5:13 PM To: php-general@lists.php.net Subject: [PHP] Please help me When I send a mail using php using mail(), and using html tags in message body

RE: [PHP] Please help me

2007-01-02 Thread zoticaic
emails. -- Outsource Now | GetAFreelancer http://www.getafreelancer.com/affiliates/shockx/ _ From: Anju Prasad [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 02, 2007 5:26 PM To: zoticaic Cc: php-general@lists.php.net Subject: Re: [PHP] Please help me I am doing that but still

Re: [PHP] Please help me

2007-01-02 Thread Anju Prasad
/shockx/ -Original Message- From: Anju Prasad [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 02, 2007 5:13 PM To: php-general@lists.php.net Subject: [PHP] Please help me When I send a mail using php using mail(), and using html tags in message body , these tags

Re: [PHP] Please help me

2007-01-02 Thread Stut
/ -Original Message- From: Anju Prasad [mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 02, 2007 5:13 PM To: php-general@lists.php.net mailto:php-general@lists.php.net Subject: [PHP] Please help me When I send a mail using

Re: [PHP] Please help me

2007-01-02 Thread Anju Prasad
: [PHP] Please help me When I send a mail using php using mail(), and using html tags in message body , these tags are being displayed as it is. Please let me know if there's any way of how to tackle with this. You need to add some headers that should

Re: [PHP] Please help me

2007-01-02 Thread Jochem Maas
- From: Anju Prasad [mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 02, 2007 5:13 PM To: php-general@lists.php.net mailto:php-general@lists.php.net Subject: [PHP] Please help me When I send a mail using php using mail

Re: [PHP] Please help me

2007-01-02 Thread Roman Neuhauser
# [EMAIL PROTECTED] / 2007-01-02 15:35:26 +0530: my problem got solved in gmail, but now i am not getting mails any where else... headers now i am using is: $headers = 'MIME-Version: 1.0'.*\n*.'Content-type: text/html;charset=iso-8859-1'.*\n*.'Content-Transfer-Encoding:

RE: [PHP] Please help me

2007-01-02 Thread Steven Macintyre
When I send a mail using php using mail(), and using html tags in message body , these tags are being displayed as it is. Please let me know if there's any way of how to tackle with this. I use phpmailer for all my email sending ... Never had a problem with it S -- PHP General Mailing

RE: [PHP] Please help me

2007-01-02 Thread Peter Lauri
: Steven Macintyre [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 02, 2007 2:44 PM To: php-general@lists.php.net Subject: RE: [PHP] Please help me When I send a mail using php using mail(), and using html tags in message body , these tags are being displayed as it is. Please let me know

[PHP] Please help me with in_array

2006-08-04 Thread Chris G
Hi all I have been stuck on this problem for 4 hours. Please anyone that can help here I would appreciate it. If I print_r($_GET) I have Array ([question] = Array ( [10] = 1 [11] = 2 [12] = 1 [13] = 1)' So now I try foreach($_GET['question'] as $key) { if(!in_array($key,

Re: [PHP] Please help me with in_array

2006-08-04 Thread Jochem Maas
Chris G wrote: Hi all I have been stuck on this problem for 4 hours. Please anyone that can help here I would appreciate it. If I print_r($_GET) I have Array ([question] = Array ( [10] = 1 [11] = 2 [12] = 1 [13] = 1)' So now I try foreach($_GET['question'] as $key) {

Re: [PHP] Please help me with in_array

2006-08-04 Thread Jochem Maas
Chris G wrote: I have already tried using foreach($_GET['question'] as $key = $value) the in_array function does not work with it for some reason. 'does not work with it' ?? use var_dump(); to see what's actually in your variables. On 8/5/06, *Jochem Maas* [EMAIL PROTECTED]

[PHP] Please help me with a query

2006-06-13 Thread Jesús Alain Rodríguez Santos
First of all I'm sorry for my english I don't know speak very well, I will try to explain it, I hope you understain what I need. I have two tables: centers and peoples, in table centers I have the centers values and in table peoples I have the peoples values and in table columns center the id

Re: [PHP] Please help me with a query

2006-06-13 Thread Jochem Maas
if you want to ask a question don't be so lazy as to simply reply to a post in an existing thread - it's considered rude. send a new email. Jesús Alain Rodríguez Santos wrote: ... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Please help me with a query

2006-06-13 Thread Jef Sullivan
@lists.php.net Subject: [PHP] Please help me with a query First of all I'm sorry for my english I don't know speak very well, I will try to explain it, I hope you understain what I need. I have two tables: centers and peoples, in table centers I have the centers values and in table peoples I have

Re: [PHP] please help me I try to post my question to Php.net 2-3 times

2006-02-16 Thread Hugh Danaher
If you want to preserve the blank spaces then try; str_replace( , nbsp;, $contents); // nbsp; is html for blank space. HTH HTD - Original Message - From: [EMAIL PROTECTED] To: php-general@lists.php.net Sent: Wednesday, February 15, 2006 10:26 PM Subject: [PHP] please help me I try

Re: [PHP] please help me I try to post my question to Php.net 2-3 times

2006-02-16 Thread Barry
Hugh Danaher wrote: If you want to preserve the blank spaces then try; str_replace( , nbsp;, $contents); // nbsp; is html for blank space. HTH HTD no he don't: qote: read text file to array string -- Smileys rule (cX.x)C --o(^_^o) Dance for me! ^(^_^)o (o^_^)o o(^_^)^ o(^_^o) -- PHP

Re: [PHP] please help me I try to post my question to Php.net 2-3times

2006-02-16 Thread Hugh Danaher
] please help me I try to post my question to Php.net 2-3times Hugh Danaher wrote: If you want to preserve the blank spaces then try; str_replace( , nbsp;, $contents); // nbsp; is html for blank space. HTH HTD no he don't: qote: read text file to array string -- Smileys rule (cX.x)C --o(^_^o

Re: [PHP] please help me I try to post my question to Php.net 2-3 times

2006-02-16 Thread Kim Christensen
On 2/16/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: $filename =3D c:data.txt; $contents =3D file($filename); echo $contents; ? // data in text file is 1_2_3_4 _ =3D blank // output is 1 2 3 4 // I want fixed possition . please help me ? I'm not really sure what you're

[PHP] please help me I try to post my question to Php.net 2-3 times

2006-02-15 Thread wvolks
text file problem read text file to array string. I use function File(). but when I display data in text file it compress space in each lines such as first record contain 1_2__3__4__ ( _ = blank ) when store in array string is 1 2 3 4 . I want you tell me howto do?

Re: [PHP] Please help with apache 2

2006-01-28 Thread PHP
Hi, Thanks, putting the addtype in the directory section seems to have solved the problem. - Original Message - From: Dan Trainor [EMAIL PROTECTED] To: PHP [EMAIL PROTECTED] Sent: Friday, January 27, 2006 6:09 PM Subject: Re: [PHP] Please help with apache 2 PHP wrote: Help, I

[PHP] Please help with apache 2

2006-01-27 Thread PHP
Help, I can't find anything on this. I upgraded from apache 1.3 to apache 2.2 My problem is, I currently have .htm files being parsed as php, that works fine. However, if I have the php_engine turned off for a directory, any .htm files will now prompt firefox to download it. How do I

Re: [PHP] Please help with apache 2

2006-01-27 Thread The Doctor
On Fri, Jan 27, 2006 at 06:03:50PM -0800, PHP wrote: Help, I can't find anything on this. I upgraded from apache 1.3 to apache 2.2 My problem is, I currently have .htm files being parsed as php, that works fine. However, if I have the php_engine turned off for a directory, any .htm

[PHP] Please Help!

2006-01-25 Thread S Yang
Dear Sir/Madam: I am trying to split a DSA signature that is generated by openssl_sign() function in PHP, which should be made up of 2 numbers: r and s, but I don't know how to build the structure of the signature generated by PHP and then to split it into two numbers (r,s). Which method

Re: [PHP] Please Help!

2006-01-25 Thread Michael Crute
On 1/25/06, S Yang [EMAIL PROTECTED] wrote: Dear Sir/Madam: I am trying to split a DSA signature that is generated by openssl_sign() function in PHP, which should be made up of 2 numbers: r and s, but I don't know how to build the structure of the signature generated by PHP and then to split

Re: [PHP] Please Help!

2006-01-25 Thread Steve Clay
Wednesday, January 25, 2006, 2:52:21 PM, S Yang wrote: Which method might I use to split the signature I have built in PHP into (r,s)? How can I know what the signature looks like? Run the function http://us2.php.net/openssl_sign and pass it a $signature. According to the manual, if

[PHP] please help me send html email from php scripts instead of simple text

2005-04-28 Thread Carraccia, Giuseppe
Hello, can you please help me send an html email using php instead of just simple text output. I'm trying to have the user fill out a form ( https://www.smilerochester.com/medical_form.html ) and have the exact same form emailed to me with the same pretty format of a form instead of just a

Re: [PHP] please help me send html email from php scripts instead of simple text

2005-04-28 Thread Richard Davey
Hello Giuseppe, Thursday, April 28, 2005, 2:22:20 PM, you wrote: CG Hello, can you please help me send an html email using php instead of CG just simple text output. I'm trying to have the user fill out a form ( CG https://www.smilerochester.com/medical_form.html ) and have the exact CG same

Re: [PHP] please help me send html email from php scripts instead of simple text

2005-04-28 Thread John Nichel
Carraccia, Giuseppe wrote: Hello, can you please help me send an html email using php instead of just simple text output. I'm trying to have the user fill out a form ( https://www.smilerochester.com/medical_form.html ) and have the exact same form emailed to me with the same pretty format of a

[PHP] Please help!

2005-01-05 Thread
To whom it may concern, When I worte php for ldap_search(), It always shows the warning messageWarning: ldap_search(): Search: Operations error ... My server is windows 2003 with AD. I have seen one solution on the network, they said that I should add ldap_set_option($ds, LDAP_OPT_REFERRALS, 0);

[PHP] PLEASE HELP ON MAIL FUNCTION

2004-10-31 Thread kunal Aggarwal
Dear friend, I am using PHP 4.3.4 version. Please tell how to unpload a mail function. Error comes on executing mail function is mail(): SMTP server response: 550 5.7.1 Unable to relay for [EMAIL PROTECTED] in C:\Program Files\Apache

Re: [PHP] PLEASE HELP ON MAIL FUNCTION

2004-10-31 Thread Chris
Your Apache/PHP Mail function is working properly. The SMTP server needs to be configured to relay email from the PHP server. The normal configuration would be to allow the relay of all mail from that server. Chris kunal Aggarwal wrote: Dear friend, I am using PHP 4.3.4 version. Please tell

[PHP] Please Help! Call to undefined function mysql_connect()

2004-10-21 Thread Scott McDonald
Error: Fatal error: Call to undefined function mysql_connect() in d:\inetpub\www\test.php on line 5 System: winXPsp2 Tried: . Re-install IIS . Re-install PHP using installer. . Re-install PHP using zip manual install (both ISAPI and CGI approachs) . Re-install in Safe Mode (d'oh! no IIS in safe

Re: [PHP] Please Help! Call to undefined function mysql_connect()

2004-10-21 Thread Greg Donald
On Thu, 21 Oct 2004 16:41:28 -0500, Scott McDonald [EMAIL PROTECTED] wrote: Error: Fatal error: Call to undefined function mysql_connect() in d:\inetpub\www\test.php on line 5 I am at a loss... any ideas? Did you uncomment the mysql entension in your php.ini ? -- Greg Donald Zend

[PHP] Please Help, returning path

2004-06-18 Thread me2resh
is there a function to detect the path of the directory i need my file to detect the path it is on it, not the http path but the path on server please help me with that IncrediMail - Email has finally evolved - Click Here

[PHP] Please help, problem with set_ini

2004-06-02 Thread Warren Gardner
Hi, I'm having a problem with a set_ini command... I need to be able to set the -f parameter (to set the originating address on my server). I am getting a false response code when I run the following command: $Result=ini_get(sendmail_path), /usr/sbin/sendmail -t

Re: [PHP] Please help, problem with set_ini

2004-06-02 Thread Matt Matijevich
[snip] I'm having a problem with a set_ini command... I need to be able to set the -f parameter (to set the originating address on my server). I am getting a false response code when I run the following command: [/snip] looks like sendmail_path has to be set in http.conf or php.ini

Re: [PHP] Please help, problem with set_ini

2004-06-02 Thread Marek Kilimajer
Warren Gardner wrote: Hi, I'm having a problem with a set_ini command... I need to be able to set the -f parameter (to set the originating address on my server). I am getting a false response code when I run the following command: $Result=ini_get(sendmail_path), /usr/sbin/sendmail -t

[PHP] PLEASE HELP on ClibPDF, didn't receive any answers so far....

2004-02-17 Thread Jan Broermann
Hi List, to say it up front, this is none of these how do I I do (with PHP) what Javascript is supposed to be for (Client Side)? Or my computer is broken how do I fix it, I'm deeply in the need for help. I run Apache 1.3.x with PHP 4.3.1 on Win2000 I'm doing a paper comparing some of

RE: [PHP] Please help me understand gmmktime()

2004-02-12 Thread Ford, Mike [LSS]
On 11 February 2004 20:26, Richard Day wrote: Hello: Environment: Linux server PHP 4.3.4 This code: echo 'br'.strftime('%T %Z',mktime()).', Timestamp='.mktime(); echo 'br'.strftime('%T GMT',gmmktime()).', Timestamp='.gmmktime(); yields this result:

[PHP] Please help me understand gmmktime()

2004-02-11 Thread Richard Day
Hello: Environment: Linux server PHP 4.3.4 This code: echo 'br'.strftime('%T %Z',mktime()).', Timestamp='.mktime(); echo 'br'.strftime('%T GMT',gmmktime()).', Timestamp='.gmmktime(); yields this result: 23:52:08 EST, Timestamp=1076475128 18:52:08 GMT,

[PHP] Please help me with this. (Retriving info from mySQL database and then put it in combo box)

2004-01-31 Thread Radwan Aladdin
Hi all.. I have in my database the fields :CourseTitle, Language1, Language2, Language3, Language4, Language5, Language6...Etc.. Now what I want to make is : By using an ActiveX Control I want to retrive the values for these fields from the database.. so for example there are many rows

Re: [PHP] Please help me with this. (Retriving info from mySQL database and then put it in combo box)

2004-01-31 Thread Raditha Dissanayake
Hello This is a PHP list not an activex list. Radwan Aladdin wrote: Hi all.. I have in my database the fields :CourseTitle, Language1, Language2, Language3, Language4, Language5, Language6...Etc.. Now what I want to make is : By using an ActiveX Control I want to retrive the values for these

[PHP] Please help me as fast as possible.. very important!!

2004-01-20 Thread Radwan Aladdin
Hi all Is it possible in mySQL to put a timer that changes a value inside a row in a table every while? For example : Add 1 to the value very 10 minutes for example.. Field number = 5 after ten minutes = 6 after another 10 minuste = 7..Etc.. Is it possible?And how? Regards..

RE: [PHP] Please help me as fast as possible.. very important!![Scanned]

2004-01-20 Thread Michael Egan
I've never done it but I can only imagine you'd need to run some sort of CRON job to effect this at regular intervals. HTH, Michael Egan -Original Message- From: Radwan Aladdin [mailto:[EMAIL PROTECTED] Sent: 20 January 2004 09:45 To: [EMAIL PROTECTED] Subject: [PHP] Please help

Re: [PHP] Please help me as fast as possible.. very important!!

2004-01-20 Thread Radwan Aladdin
Where can I fin tutorials about it? (CRON Tab)? Regards.. - Original Message - From: Nick JORDAN [EMAIL PROTECTED] To: Radwan Aladdin raladin [EMAIL PROTECTED] Sent: Tuesday, January 20, 2004 1:56 PM Subject: Re: [PHP] Please help me as fast as possible.. very important

RE: [PHP] Please help me as fast as possible.. very important!![Scanned]

2004-01-20 Thread Michael Egan
http://www.google.com/linux?hl=enlr=ie=ISO-8859-1q=cron+tutorialsbtnG=Google+Search -Original Message- From: Radwan Aladdin [mailto:[EMAIL PROTECTED] Sent: 20 January 2004 10:05 To: Nick JORDAN Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Please help me as fast as possible.. very

Re: [PHP] Please help me as fast as possible.. very important!!

2004-01-20 Thread Mario
Aladdin [EMAIL PROTECTED] To: Nick JORDAN [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Tuesday, January 20, 2004 12:05 PM Subject: Re: [PHP] Please help me as fast as possible.. very important!! Where can I fin tutorials about it? (CRON Tab)? Regards.. - Original Message - From: Nick

RE: [PHP] Please help me as fast as possible.. very important!!

2004-01-20 Thread Angelo Zanetti
Im not sure about php but if you are desperate then you could also do it in VB with a timer control. -Original Message- From: Radwan Aladdin [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 20, 2004 11:45 AM To: [EMAIL PROTECTED] Subject: [PHP] Please help me as fast as possible.. very

RE: [PHP] Please help me as fast as possible.. very important!!

2004-01-20 Thread Chris Kay
JORDAN Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Please help me as fast as possible.. very important!! Where can I fin tutorials about it? (CRON Tab)? Regards.. - Original Message - From: Nick JORDAN [EMAIL PROTECTED] To: Radwan Aladdin raladin [EMAIL PROTECTED] Sent: Tuesday, January 20, 2004

Re: [PHP] Please help me as fast as possible.. very important!!

2004-01-20 Thread Tom
Radwan Aladdin wrote: Hi all Is it possible in mySQL to put a timer that changes a value inside a row in a table every while? For example : Add 1 to the value very 10 minutes for example.. Field number = 5 after ten minutes = 6 after another 10 minuste = 7..Etc.. Is it possible?And how?

[PHP] Please help me with these questions..

2004-01-16 Thread SASSINC Internet Solutions - Arabic Department
Hi all.. I'm a beginner in PHP.. And I'm working on a project.. I want your help please to learn how to : 1- MD5 with PHP values. 2- Random values in PHP. 3- Inserting values to mySQL DB by PHP and importing from them also to send echo. (For example : after MD5 some strings in PHP I want to

Re: [PHP] Please help me with these questions..

2004-01-16 Thread Richard Davey
Hello, Friday, January 16, 2004, 11:54:26 AM, you wrote: SISAD I'm a beginner in PHP.. And I'm working on a project.. SISAD I want your help please to learn how to : SISAD 1- MD5 with PHP values. $md5 = md5($variable); SISAD 2- Random values in PHP. $min = 1; $max = 100; $random =

[PHP] Please help me retrieving data from a PHP file!!???

2004-01-16 Thread SASSINC Internet Solutions - Arabic Department
Hi all.. I hope you can help me.. How to retrieve data from a PHP file? (The value that will be retrieved of course it is echoed in the PHP file, and it will be shown in a TextBox in my VB program.. so I want to retrieve it to my EXE VB program that will put it inside a TextBox or something

Re: [PHP] Please help me retrieving data from a PHP file!!???

2004-01-16 Thread John W. Holmes
SASSINC Internet Solutions - Arabic Department wrote: How to retrieve data from a PHP file? (The value that will be retrieved of course it is echoed in the PHP file, and it will be shown in a TextBox in my VB program.. so I want to retrieve it to my EXE VB program that will put it inside a

[PHP] Please help with mail function

2004-01-08 Thread Rolf Berkenbosch
Hello all, I have a big problem with the mail function in a php script. If I run this script with root access, the mail function is working. If I try to run it like http://www.i-s-u.nl/test.php it won't work. What is happening, what can I do??? Below the little script: ? mail([EMAIL

[PHP] Please help on session_destroy error...

2004-01-01 Thread Tim Meader
I'm looking for help trying to do away with an error I get from time to time in my access control session logic. Here is my session setup from the php.ini: session.save_handler = files session.save_path = /tmp session.use_cookies = 1 session.use_only_cookies = 1 session.name = PHPSESSID

[PHP] Please help on session_destroy error...

2004-01-01 Thread Tim Meader
I'm looking for help trying to do away with an error I get from time to time in my access control session logic. Here is my session setup from the php.ini: session.save_handler = files session.save_path = /tmp session.use_cookies = 1 session.use_only_cookies = 1 session.name = PHPSESSID

  1   2   3   4   >