i'm receiving the error unexpected T_BOOLEAN_OR for the following line of code:
if (($_POST['title']) == '') || (($_POST['desc'])=='') || (($_POST['state'])=='') || (($_POST['date']) == '') {
considering that so far i've made several fairly complex little apps using similar lines of code-- i simply can not see what is wrong here. does this mean that the error in this case must be conditional based on the context in which this line appears?
signed:
Stumped in the Valley
EDIT: i thought it might have something to do w/ single vs double quoted strings, but this line produces the same error:
if (($_POST['title']) == "") || (($_POST['desc'])=="") || (($_POST['state'])=="") || (($_POST['date']) == "") {
(ya know, i avoided posting this question because i think it seems so "obvious"... ugh!)