die(“Unable to connect to $site”);
Category: .General PHP
Differences To C and C++
=== and !=== PHP is a loosly typed language. For instance this is true because PHP converts to the requried types before the compare: if (1000 == “+1000”) To perform an exact comparison you can use this instead, which is false if (1000 === “+1000”) For does not equal you can also use !== Break […]
.General PHP
Get PHP Info <?php phpinfo(); ?> Die (Exit page at this point) if (some_problem) { echo “There was an error.”; die(); }