Initial commit
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
// CLI test for save_point.php
|
||||
$_POST = [
|
||||
'tipe' => 'point',
|
||||
'nama' => 'SPBU Test',
|
||||
'no_wa' => '08123456789',
|
||||
'buka' => 'ya',
|
||||
'lat' => -0.0554,
|
||||
'lng' => 109.3494
|
||||
];
|
||||
|
||||
// Capture output
|
||||
ob_start();
|
||||
include 'save_point.php';
|
||||
$out = ob_get_clean();
|
||||
echo "Output:\n";
|
||||
echo $out . "\n";
|
||||
?>
|
||||
Reference in New Issue
Block a user