Restyled by whitespace

This commit is contained in:
Restyled.io
2024-01-22 22:20:26 +00:00
parent 9c001f3402
commit a95736ebed

View File

@ -20,7 +20,7 @@
// larger submissions in order to prevent overflow of the blue tooth stack. // larger submissions in order to prevent overflow of the blue tooth stack.
// //
//----------------------------------------------------------------------------------- //-----------------------------------------------------------------------------------
// //
// Usage: // Usage:
// wl = new WebLog(); // wl = new WebLog();
// wl.clear(); // wl.clear();
@ -28,7 +28,7 @@
// wl.flush(); // wl.flush();
// //
// https://domain.name/path/log.php // https://domain.name/path/log.php
// //
// <?php // <?php
// $myfile = fopen("log", "a"); // $myfile = fopen("log", "a");
// $queries = array(); // $queries = array();
@ -36,11 +36,11 @@
// fwrite($myfile, $queries['log']); // fwrite($myfile, $queries['log']);
// print "Success"; // print "Success";
// ?> // ?>
// //
// Logs published to: https://domain.name/path/log // Logs published to: https://domain.name/path/log
// //
// https://domain.name/path/log_clear.php // https://domain.name/path/log_clear.php
// //
// <?php // <?php
// $myfile = fopen("log", "w"); // $myfile = fopen("log", "w");
// fwrite($myfile, ""); // fwrite($myfile, "");