Title: Pass Greater Then / Less Then ? Post by: tlombard on December 07, 2013, 12:19:18 PM Can someone take a double look, and see why I cannot pass my year FILTEr values over to my PHP page...I think its becuase I;m trying to pass "<, >, =, <="...and that is breaking somehting???
I have two search fields: Year and Year_Filter Code: <input id="year_FIELD" class="easyui-combobox" When the search button is clicked...those values are sent the PHP page: Code: <script type="text/javascript"> My PHP code captures IS NOT CAPTURING THE YEAR_FILTER Value: Code: $year_year = isset($_POST['yearPOST']) ? mysql_real_escape_string($_POST['yearPOST']) : '2012'; Here is my WHERE statement: Code: $where = "year_year $year_FILTER $year_year"; Title: Re: Pass Greater Then / Less Then ? Post by: tlombard on December 07, 2013, 12:35:03 PM as soon as I posted i found the error
my POST variables did not match ::) Code: yearFilter_POST |