PHP
$db = neues mysqli („localhost“, „xxxx“, „xxxxxxxxxx“, „xxxxx ");
wenn (mysqli_connect_errno ()) {
Echo „Störung: Konnte nicht an Datenbank anschließen. Bitte noch einmal später versuchen. “;
Ausgang;
};
$result4=mysqli_query ($db, „AUSERWÄHLTE work_order_uids, work_order_job_code_desc,
wo_surface_code_description, account_name
VON wo_table wo_stats, acitve_sites_table, accounts_table, wo_surface_code, work_order_job_codes
WO wo_table.work_order_uids = wo_stats.work_order_uid
UND wo_stats.active_sites_uid = acitve_sites_table.active_sites_uid
UND acitve_sites_table.account_id = accounts_table.account_uid
UND wo_table.surface_code = wo_surface_code.wo_surface_code_id
UND wo_table.job_code = work_order_job_codes.wo_job_code_id
UND wo_status_codes = 1 ");
wenn (! $result4)
{
$error = „Störung, die wo_table Daten holt! “;
einschließen („error.html.php“);
Ausgang ();
}
während ($row=mysqli_fetch_array ($result4))
{
$wo_tables [] =array ('work_order_uids'=>$row [„work_order_uids“], 'account_name'=>$row [„account_name“]
, 'work_order_job_code_desc'=>$row [„work_order_job_code_desc“], 'wo_surface_code_description'=>$row [„wo_surface_code_description“]);
};
//var_dump ($wo_tables);
? >
PHP foreach ($wo_tables als $wo_table):? >
PHP var_dump ($wo_table); ? >
PHP endforeach;? >
|