Hello,
Every time I use a query param with the value 11 or 2011, its automatically converted to 13 or 2013. In fact anything below 12 or 2012 is converted. Example:
I'm assuming its recognizing that the value is a date that has passed. Why would it do this / how to I go about resolving it.
Thanks,
Chris
Every time I use a query param with the value 11 or 2011, its automatically converted to 13 or 2013. In fact anything below 12 or 2012 is converted. Example:
Code:
// /test.php?Year=11
<?php
$year = $_GET['Year'] | '12';
echo "$year";
?>
I'm assuming its recognizing that the value is a date that has passed. Why would it do this / how to I go about resolving it.
Thanks,
Chris