.. - PHP Online

Form of PHP Sandbox

Enter Your PHP code here for testing/debugging in the Online PHP Sandbox. As in the usual PHP files, you can also add HTML, but do not forget to add the tag <?php in the places where the PHP script should be executed.



Your result can be seen below.

Result of php executing





Full code of ...php

  1. #define HATI_PIN 9
  2.  
  3. void setup() {
  4.   pinMode(HATI_PIN, OUTPUT);
  5. }
  6.  
  7. void loop() {
  8.   digitalWrite(HATI_PIN, HIGH); // Mengaktifkan getaran pada hati
  9.   delay(1000); // Menahan getaran selama 1 detik
  10.   digitalWrite(HATI_PIN, LOW); // Mematikan getaran
  11.   delay(1000); // Jeda selama 1 detik sebelum memulai getaran kembali
  12. }
  13.  
  14.  
File Description
  • ..
  • PHP Code
  • 23 May-2023
  • 321 Bytes
You can Share it: