<div dir="ltr">I just quickly scanned your attachment so I'm not positive this is your problem but maybe this will help you: <br><br>($_POST['_submit_check']) is set by a form submit (a POST request). If you are loading the file locally by opening the file in a browser that is most likely a GET request, in which case all $_POST associative array values will be blank.<br><br>The value will be set after you submit the form, you should see something like this:<br><br><form name="msgform" method="post" action="<?php print $_SERVER['PHP_SELF']; ?>"><br><br>...<br><br><input type="hidden" name="_submit_check" value="1" /><div>...</div><div></form><br><br>Which means that you will load the same page, this time submitting _submit_check with value of "1" using method of POST, so on the subsequent page load $_POST['_submit_check'] should be available.<br><br>Hope that helps.  You might try stackoverflow in the future, you will get an answer within hours or minutes.</div><div><br><br>On Wed, Feb 3, 2016 at 2:16 PM, ListReg <<a href="mailto:listreg_sr@ix.netcom.com">listreg_sr@ix.netcom.com</a>> wrote:<br>><br>> Accepted. Now then back to the original question, is there any proficient PHP programmers in the group or does any one have a contact??<br>><br>> Stephen<br>><br>><br>><br>> On 2/3/2016 10:07 AM, Braddock Gaskill wrote:<br>>><br>>> Yes, I started the PHP derision thread as a joke and am sorry it got<br>>> out of hand.<br>>> PHP questions are of course welcome here.<br>>><br>>> On Wed, Feb 3, 2016 at 9:48 AM, DYN: Jim Workman <<a href="mailto:jimw@dynashoe.com">jimw@dynashoe.com</a>> wrote:<br>>>><br>>>> Stephen, this is an inclusive and supportive group; never arrogant and elitist.<br>>>><br>>>> -----Original Message-----<br>>>> From: SGVLUG [mailto:<a href="mailto:sgvlug-bounces@sgvlug.net">sgvlug-bounces@sgvlug.net</a>] On Behalf Of Dustin Laurence<br>>>> Sent: Wednesday, February 03, 2016 9:40 AM<br>>>> To: <a href="mailto:sgvlug@sgvlug.net">sgvlug@sgvlug.net</a><br>>>> Subject: Re: [SGVLUG] PHP question<br>>>><br>>>> On 02/03/2016 09:07 AM, ListReg wrote:<br>>>>><br>>>>> Thank you for your offer. I'm not a proficient programmer in PHP (far<br>>>>> from it)<br>>>><br>>>> Being a proficient PHP programmer would imply that you had spent serious seat time in PHP, and that's the last thing I'd want to admit to.<br>>>> Better to pretend you had a more rewarding and socially respectable career, like illegal dog fighting or bilking little old ladies out of their pensions.<br>>>><br>>>>> ....but I was trying to make a web page for a group<br>>>><br>>>> Please let this be an addition to an existing PHP website, as it sounds.<br>>>>   Making a new website in PHP without the excuse that you already know PHP better than a good language makes baby Jesus cry.<br>>>><br>>>> Dustin<br>>>><br>>>><br>>>><br>>><br>><br>><br>> --<br>> IMPORTANT NOTICE: This message is intended only for the addressee and<br>> may contain confidential, privileged information. If you are not the<br>> intended recipient, you may not use, copy or disclose any information<br>> contained in the message. If you have received this message in error,<br>> please notify the sender by reply e-mail and delete the message.<br>><br>><br></div></div>