Advertisement
Guest User

Untitled

a guest
Dec 5th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. Hospital Management System:
  2.  
  3. Database Name: HospitalManagement
  4.  
  5. Table 1:
  6. Name:- Patient Details
  7. Columns:
  8. Patiet_id
  9. Name
  10. Date of Birth
  11. Age
  12. Sex
  13. Address
  14. Date of Admission
  15. Date of Discharge
  16. Doctor Assigned (One doctor can be assigned to many patients but one patient is assigned to only one doctor)
  17.  
  18. Table 2:
  19. Name:- Doctor Details
  20. Name
  21. Date of Birth
  22. Age
  23. Sex
  24. Speciality
  25.  
  26. Project Steps:
  27.  
  28. - start a new php project
  29. - create a database
  30. - connect your php project to the database
  31. - create two tables: doctor and patient
  32. - save data in two tables
  33. - write code to show the following actions
  34. Find total patients
  35. Find total patients admitted in a day
  36. Find Male and Female Patients
  37. Find patients assgined to a doctor
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement