Buttons will not show :(
Buttons will not show :(
rjsherlock
Posts: 1Questions: 1Answers: 0
I cant get excel, pdf, etc buttons to show.....any idea why? I copied directly from the site
echo
"
<html>
<head>
<link rel='stylesheet' type='text/css' href='//maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css'/>
<link rel='stylesheet' type='text/css' href='https://cdn.datatables.net/1.10.10/css/dataTables.bootstrap.min.css'/>
</head>
<body>
Facility Name | DBNUM | Account Number | Last Name | First Name | Admission Date | Discharge Date | Total Charge | Claim Type | Claim Status | Created On | Latest Note | Latest Note Date |
---|---|---|---|---|---|---|---|---|---|---|---|---|
" . $row['facility_name'] . " | "; echo "" . $row['DBNUM'] . " | "; echo "" . $row['account_number'] . " | "; echo "" . $row['last_name'] . " | "; echo "" . $row['first_name'] . " | "; echo "" . $row['admit_date'] . " | "; echo "" . $row['discharge_date'] . " | "; echo "" . $row['total_charge'] . " | "; echo "" . $row['claim_type'] . " | "; echo "" . $row['claim_status'] . " | "; echo "" . $row['created'] . " | "; echo "" . $row['last_note'] . " | "; echo "" . $row['last_note_date'] . " | "; echo "
</body>
</html>";
This discussion has been closed.