A few technical questions August 19, 2021, 07:49:08 AM Hello,I am exploring PHPRad to see how it fits our requirement. I am trying to correlate what I want to achieve (or what I have already developed manually) inPHPRadBut I am not able to understand as to how I can do a few things in it.I am listing a few question that I have, trying to explain in as much details as I can.Q1. How to show a page in which there is not data loaded when it opens except for a few selects. As shown below:Once users selects required parameters it should automatically (on selecting date) fetch attendance (using Ajax) of student if already taken. The data will look like below image:Q2. How to build and execute a complex query like this?Code: [Select]SELECT DISTINCT allocate_batch.ab_roll_no, student_master.sm_student_name, student_master.sm_id FROM allocate_batch INNER JOIN student_master ON allocate_batch.ab_sm_id = student_master.sm_id LEFT JOIN enrollment_master ON student_master.sm_id = enrollment_master.enrollment_sm_idLEFT JOIN enrollment_subject ON enrollment_master.enrollment_id = enrollment_subject.esub_enrollment_idWHEREallocate_batch.ab_std_id = '11' ANDallocate_batch.ab_ay_id = '36' ANDstudent_master.sm_active ='1' ANDallocate_batch.ab_div_id = '1' ANDenrollment_subject.esub_sub_id = '1'AND enrollment_ay_id = '12'AND enrollment_im_id = '1'Q3. How to load data in multiple dependent Select? Like for example in my case when a user selects Academic Year all the other selects should get updated and relevant data loaded into all of them. So in an Academic Year does not have a standard linked to it that standard does not show up.Q4. How to update multiple tables in background when user enters data in the form? Like for example when a student is enrolled I want to insert the fees due for that student in Fees table.Q5. In a few videos that I have seen I have observed that on a entry form only one Submit button is show. How to add another button to it?Q6. I don't know as to how to explain this problem so please check below image to understand as to what I a trying to achieve:Waiting for creative feedback.Yogi Yang Quote Selected
Re: A few technical questions Reply #1 – August 21, 2021, 10:05:54 PM @YogiYang your question has been answered here. Quote Selected