We, a group of doctors from a developing country attempting to develop integrated EHR system (with PACS and LIMS) to be used in our tirtiary care hospital, where all of our services are free of charge!.
We are piloting an EHR web application based on PHP, Javasctipt, and Ajax with MySQL and now we are getting little bit familiar with those technologies, but NOT with C++ or other technologies with Orthanc.
We manged to setup Orthanc server(s) in our LAN and send dicom images from our radiology department modalities (MRI, CT and CR) to it and retrieve those without much hassle (through HTTP and DICOM)
Now we need to incorporate the Orthanc web viewer to our patient based EHR system as follows;
In our EHR web application, first we need to select the patient which redirect to patient dashboard, where there is a button calld medical Images. when clicked, we need to display all the STUDIES related to that patient (in our Orthanc server) in chronological order, and then browse SERIES and INSTANCES as in your defalt web viever/series viewer.
In our php web application, PatientID is a session variable and so we need to display all dicom studies related to that PatientID only (may be in a iframe or div). So what is the way (simple URL like
http://10.10.10.44:8042/app/explorer.html#patient?patientid=123456789) to display all the studies related and then browse and view series and instances?
We know that this is 99% possible and its a simple thing for a IT guy, but with our poor knowledge of IT domain, we are stuck there. Sorry to post such a long description for a silly question. Any help with example code or link will be highly appreciated.
Thank you.