Files
Wrench-ApiTester/public/startjoblist.php
T
Olu Amey 35cfb9edd3 Wallet
2023-02-13 14:16:44 -05:00

23 lines
458 B
PHP

<?php
include_once('def.php');
include('wrenchboard_class.php');
$wrenchboard = new wrenchboard_class();
$myfile = fopen("../writable/session.txt", "r");
$session_id = fgets($myfile);
$member_id = fgets($myfile);
fclose($myfile);
$data = array(
"limit" => 10,
"page" => "1",
'action' => WRENCHBOARD_START_JOBLIST,
);
$out = array();
$ret = $wrenchboard->wrenchboard_api($data,$out);
//echo highlight_string(file_get_contents(__FILE__));
?>