I am trying to typecast a GET variable to int in internet explorer 11 (only) without success
URL ...&project_id=19
$tt= $_GET['project_id'] ; is 19 in debugger, as expected
$tt= (int) $_GET['project_id'] ; is 0
strlen($tt) is 2
mb_str_encoding($tt) is ASCII
In FF, the typecast works fine, same in older internet explorer.
anyone has ideas what is going on?
Klaus