[PHP] error_log set but still writing to syslog and the apache error_log

2004-03-10 Thread Jason Lehman
I have set error_log to /var/logs/php_error.log and no matter what it keeps writing to syslog. I have restarted the server and it shows up in the phpinfo(); correctly but it won't write to the it keeps writing to syslog. I have changed the owner to apache.apache and I have kept it to root.ro

[PHP] Can't Send Mail in PHP/iis/Windows but no problems with ASP

2003-08-20 Thread Jason Lehman
Mail stop sending about a week ago from all of my php pages but my asp pages still can send mail. Also went thru telnet and sent mail and I have no problems. Does anybody know of anything I should be looking for? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://

[PHP] Eval or $$ are they the same or is $$ safer

2003-06-11 Thread Jason Lehman
Is $$ the same as eval or is it different and my main question is, is it safer to use to for processing form data? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Regular Expression Help in my PHP! Sorry if wrong group

2003-01-15 Thread Jason Lehman
Thanks for the response. I found this web page (http://www.itworld.com/nl/perl/01112001/) right after I submitted my question. It was great for explaining regexp's greediness. 1lt John W. Holmes wrote: I have a script that turns certain words into links. That I am having no problems with, it

[PHP] Re: Regular Expression Help in my PHP! Sorry if wrong group

2003-01-15 Thread Jason Lehman
I figured out what I was doing wrong. My regexp should of looked like this /]*>(Tampa)<\/a>/ and that made it more specific and kept it to that match. Jason Lehman wrote: I have a script that turns certain words into links. That I am having no problems with, it is when I want to

[PHP] Regular Expression Help in my PHP! Sorry if wrong group

2003-01-15 Thread Jason Lehman
I have a script that turns certain words into links. That I am having no problems with, it is when I want to turn the links back in to plain text that I am having the problem. Below are my examples. And I know my regex is being greedy but I don't know how to stop it from being so damn greedy