In these few php lines, the first and the last lines are executed without any problem, but the middle two lines are ignored as if they are not even there. Any suggestions?
Code:
echo "<script type='text/javascript'>alert('Web Site Under Test -- line 440');</script>"; $tempstr = addslashes($where_sql); echo "<script type='text/javascript'>alert('$where_sql -- '".$where_sql."');</script>"; echo "<script type='text/javascript'>alert('Web Site Under Test -- line 445');</script>";
Comment