1
The thing I have noticed about programmers of PHP is how little this gramatical clause is not used in PHP, you know how you have to check things are an INT or a String and so with SQL Questions & the code of php.
Take this coding example, where we need an int.
$sql = "SELECT * FROM _prefix_users WHERE uid = ".$xoopsUser->uid()
// This has a better clause to force the interger type
$sql = "SELECT * FROM _prefix_users WHERE uid = ".(int)$xoopsUser->uid()
This process for example of putting (int), (float), (string) & so on allows for the variable to be force to that type.. you put this between a variable and it's co-signing.