1
2
3
4
5
6
7
8
9
10
11
|
<?php // get_customers.php
// Include your function definitions require_once 'inc/configure.php';
// Get the status from the GET parameters $status = isset($_GET['status']) ? $_GET['status'] : null;
// Call customer_option_with_status with the status and echo the result echo customer_option_with_status("", true, $status);
|