Files
intaleq_v3_pure_php/Admin/debug/scratch_test_find.php
Hamza-Ayed e999cd4ffa admin 12
2026-04-30 18:23:29 +03:00

14 lines
319 B
PHP

<?php
require_once __DIR__ . '/../core/bootstrap.php';
require_once __DIR__ . '/../functions.php';
$con = Database::get('main');
$lat = 32.11171;
$lng = 36.06737;
$carType = 'Fixed Price';
echo "Testing findBestDrivers...\n";
$drivers = findBestDrivers($con, $lat, $lng, $carType);
print_r($drivers);
echo "Done.\n";