I have the following
$xcrud->button('http://localhost/HVAC/hvac_stats_gpt.php?cust_id={cust_id},unit_no={unit_no}','Readings');
The target program only parses the unit_no using $_GET['cust_id'] and $_GET['unit_no']
Anyway to pass multiple parameters with the button feature?
Solved: The following works
$xcrud->button('http://localhost/HVAC/hvac_stats_gpt.php?cust_id={cust_id}&unit_no={unit_no}','Readings');
$xcrud->button('http://localhost/HVAC/hvac_stats_gpt.php?cust_id={cust_id},unit_no={unit_no}','Readings');
The target program only parses the unit_no using $_GET['cust_id'] and $_GET['unit_no']
Anyway to pass multiple parameters with the button feature?
Solved: The following works
$xcrud->button('http://localhost/HVAC/hvac_stats_gpt.php?cust_id={cust_id}&unit_no={unit_no}','Readings');
Last edited: