TAG | alternative
I was working on Coal Games today and then I looked up settype. michaltrutman wrote this on http://php.net/manual/en/function.settype.php. You can change variable type also in another way instead of using function settype(). You can change variable type also in another way instead of using function settype(). <?PHP $a = ’125′; //$a is string var_dump($a); $a [...]
alternative · PHP · settype
28
Alternative to mysqli_fetch_all PHP Function for MySQL
No comments · Posted by joshtime in Tutorials
While I was coding today, I tried to use the function mysqli_fetch_all on my PHP 5.2 installation. Unfortunately, this function only works on PHP 5.3 and above since it uses the new mysqlnd driver. I had to come up with a pseudo alternative to the function mysqli_fetch_all. The following is the code I came up [...]
5.2 · 5.3 · alternative · MySQL · mysqli_fetch_all · mysqlnd · PHP
