Files
Wrench-ApiTester/public/startjoblist.php
T
2023-02-12 20:54:35 -05:00

23 lines
462 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_CARDS_GETCARDLIST,
);
$out = array();
$ret = $wrenchboard->wrenchboard_api($data,$out);
//echo highlight_string(file_get_contents(__FILE__));
?>