[PHP] Custom pipe script failure code

2007-10-02 Thread Alan Fullmer
Hello, I have a quick question regarding the pipe function in Postfix and the use of PHP as a mail sorter/parser. I've looked around and see many people have used PHP as a quick and dirty solution for putting mail data into a database. I am taking all incoming mail, parsing out headers

RE: [PHP] Session Problem

2007-02-15 Thread Alan Fullmer
Does your system have permission to write to the temp directory? Put on error_reporting(E_ALL) and see if it throws an error. -Original Message- From: LoneWolf [mailto:[EMAIL PROTECTED] Sent: Thursday, February 15, 2007 2:35 PM To: php-general@lists.php.net Subject: [PHP] Session

RE: [PHP] html forms in php

2005-09-15 Thread Alan Fullmer
This might help you. input type=submit name=DELETE onclick=return confirmDelete() script function confirmDelete() { var agree=confirm(WARNING! This will blah blah delete etc yada yada \n\rPress Cancel to go back, or OK to Continue.); if (agree) return true ; else

RE: [PHP] error message while mysqling on php

2005-09-13 Thread Alan Fullmer
I see two things that could be it. #1 your $result is not $result = mysql_query(queryline); Or #2 your syntax on your query line is bad. You can try doing something like this: $query = SELECT * FROM table etc blah; $result = mysql_query($query) or die(mysql_error()); $num =

re: [PHP] Open source portal systems???

2005-03-07 Thread Alan Fullmer
I must concur. PHP nuke has never even been the slightest resource hog on any of my machines. http://www.xnote.com/ Alan Fullmer Owner / Administrator [EMAIL PROTECTED] -Original Message- From: Warren Vail [mailto:[EMAIL PROTECTED] Sent: Friday

Re: [PHP] Small HTTP Server and PHP

2003-12-29 Thread Alan Fullmer
Http? Apache? or what server software? Alan Fullmer Owner / Administrator [EMAIL PROTECTED] Xnote Communications www.xnote.com - Original Message - From: Ryan A [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, December 29, 2003 12:15 PM Subject: [PHP] Small HTTP Server and PHP

[PHP] question about security

2003-11-21 Thread Alan Fullmer
Is php capable of recognizing things such as in a text box, someone were to put ?php insert php code here; ? and display say, variables? do i have to htmlspecialchars every entry? does this make any sense? thanks in advance.