Thanks for the reply. I'm not sure I'm doing it right: is the command:
mysql_query("SET time_zone = 'US/Central'");
...supposed to change something in the way "Now()" behaves: (it does not seem to).
I added the lines:
mysqli_query($link,"SET time_zone = 'US/Central'");
date_default_timezone_set('America/Chicago');
echo "Date/Time in Milwaukee is: " .date('Y-m-d H:i:s')."<br>";
$rightnow=date('Y-m-d H:i:s');
...up near the top of the file, and then use the $rightnow value in the query
$showings_sql="SELECT if(SHOWTIME > '".$rightnow."', 1, 0) as X, concat('<form style=\"margin-bottom:0;\" method=\"POST\" target=\"_self\"><input type=\"hidden\" name=\"THECHOSEN\" value=\"',showing_ID,'\"><input type=\"submit\" name=\"ACT\" value=\"EDIT\" CLASS=\"SubmitRed\"></form>') as EDIT, DATE_FORMAT(SHOWTIME,'%a, %M %e, %l:%i %p') AS 'DAY/TIME', concat(..blahblahblah..) as PROPERTY, SHOWEDBY, showings.STATUS, COMMENT, showing_ID FROM showings LEFT JOIN import on showings.CCRE_ID=import.CC_ID ORDER BY SHOWTIME";
...and now I get the results I need. (But am wondering if I did something wrong by needing to use my $rightnow value in the query instead of Now())