Related Articles

Notes
Arduino Uno with Wifi – RC Car Controlled By PHP Server
This project uses a server with PHP to send commands to the Arduino Vehicle. The commands are sent use shell_exec and triggering wget on the command line. wget needs to be installed on your server. […]

*NEW
PHP Project (Simple) – Network Up/Down Monitor with If/Else Statement
In this example we use exec() to ping domain names and IP addresses and then parses the results so that you can test the results using an If/Else statement. exec() https://www.php.net/manual/en/function.exec.php unset() https://www.php.net/manual/en/function.unset.php https://www.w3schools.com/php/func_var_unset.asp strpos() […]

*NEW
PHP – isset() Function to Verify if a Variable Has a Value
The isset() function in PHP checks to see if the value of a variable has been set. this can be useful in applications that allow users to login, or make sure that variables are actually […]
Be the first to comment