by admin | Oct 31, 2023 | work
<?php echo "<pre>".json_encode($chart_data, JSON_PRETTY_PRINT)."</pre>"; ?>
by admin | Oct 31, 2023 | work
This blog is mostly about howtos in programming in php, js, etc
by admin | Oct 30, 2023 | Uncategorized
Welcome to WordPress. This is your first post. Edit or delete it, then start writing!
by admin | Oct 26, 2023 | Uncategorized
Welcome to WordPress. This is your first post. Edit or delete it, then start writing!
by coder coder | Jul 7, 2023 | Arrays
Used to store several values in one variable. Say you need to store your contacts. contacts = array (‘paula’,’maria’, ‘bob’ );
by coder coder | Jul 3, 2023 | etc
Ways to iterate <?php $cars = array("a", "b", "c"); $arrlength = count($cars); for($x = 0; $x < $arrlength; $x++) { echo $cars[$x]; echo "<br>"; } echo "<hr>"; foreach($cars as $x) { echo $x; echo...
by coder coder | Jul 3, 2023 | etc
<?php // $str = "<h1>Africa ≠ America ÆØÅ! &+ </h1>"; // Remove HTML tags and all characters with ASCII value > 127 $str2 = filter_var($str, FILTER_SANITIZE_STRING,FILTER_FLAG_STRIP_HIGH); echo $str2; // result: Africa America ! &+...
by admin | Jun 30, 2023 | sessions
by admin | Jun 28, 2023 | php
<?php $pop = array("brazil"=>200, "portugal"=>10, "angola"=>40); echo json_encode($pop); ?> Result: {"brazil":200, "portugal":10, "angola":40}
by admin | Jun 28, 2023 | Uncategorized
Tips and Tricks link https://www.chartjs.org/samples/2.6.0/charts/pie.html