18 lines
313 B
PHP
18 lines
313 B
PHP
<?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";
|
|
?>
|