Marine1969
IS-IT--Management
I have a recordset I need to create with data from the same structured table in 2 dbs. I have tried many different iterations of the below code. The page is finally not erroring out but also not showing the data to the screen. The page 500 errors when I
And just prints "Array=" when
How do I access the values in this array?
PHP:
echo $inv=>['db'];
PHP:
echo $inv.'=>'['db'];
How do I access the values in this array?
PHP:
foreach($stpw as $row){
$inv[] = array(['db']=>'w', ['id']=>$row['idinvoice'], ['rstop']=>$row['rstop']);
echo $inv[0][0][0];
}