When developing the Empire plug-in, the filter function for input characters Program Notes Empire cms
(1) Numeric variables can be processed with the (int) or intval function, for example: $page=(int)$_GET['page']; or $page=intval($_GET['page']); (2) Numeric variables with decimal points can be processed with the (float) or floatval function, for example: $money=(float)$money; or $...