PHP – Do While Loops Eli the Computer Guy PHP Programming (NEW) Do While Loops perform one iteration before a condition is tested. <?php $x = 80; do { print "Hello time number $x"; print "<br>"; $x++; } while($x <= 10); ?> PHP
*NEW Arduino – Temperature Web App with Raspberry Pi Eli the Computer Guy *NEW, Arduino, Arduino - Serial Communication This project allows you to get a temperature value from the Arduino, pass it to the Raspberry Pi, have a Python Script process that value and store it in a file, then have a PHP […]
Be the first to comment