Campbelltown

[xcrud]

$xcrud1 = Xcrud::get_instance();
$xcrud1->table_name(‘Store Details’);
$xcrud1->query(‘SELECT * FROM storedetails WHERE Storecode=”CB-CMP03″‘);
echo $xcrud1->render();

$xcrud2 = Xcrud::get_instance();
$xcrud2->table_name(‘Store Sales’);
$xcrud2->query(‘SELECT * FROM storesales WHERE Store=”Campbelltown”‘);
echo $xcrud2->render();

$xcrud3 = Xcrud::get_instance();
$xcrud3->table_name(‘Coffee Sales’);
$xcrud3->query(‘SELECT * FROM coffeesales WHERE Store=”Campbelltown”‘);
echo $xcrud3->render();

$xcrud4 = Xcrud::get_instance();
$xcrud4->table_name(‘Leasing Details’);
$xcrud4->query(‘SELECT * FROM leasingdetails WHERE Store=”Campbelltown”‘);
echo $xcrud4->render();

[/xcrud]