├── head.php ├── book_msg.php ├── register_msg.php ├── about.php ├── readme.txt ├── header.php ├── registration.php ├── booking.php ├── view_art.php ├── footer.php ├── home.php ├── view_event.php ├── venue.php └── index.php /head.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /book_msg.php: -------------------------------------------------------------------------------- 1 |
2 |

We will contact you soon for the verification of your book request. Thank you

3 |
4 | 11 | -------------------------------------------------------------------------------- /register_msg.php: -------------------------------------------------------------------------------- 1 |
2 |

We will contact you soon for the verification of your registration request. Thank you

3 |
4 | 11 | -------------------------------------------------------------------------------- /about.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |
5 |
6 |

About Us

7 |
8 |
9 | 10 |
11 |
12 |
13 | 14 |
15 |
16 | 17 | 18 |
19 |
-------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- 1 | Free Download Source Code "Event_Management_System" 2 | 3 | FIRST Download 4 | 5 | 1.XAMPP 6 | 7 | 2."TEXT EDITOR" NOTEPAD++ OR SUBLIME TEXT 3 / ETC. 8 | 9 | 3"Event_Management_System" 10 | 11 | 4. Download the zip file/ download winrar 12 | 13 | 5. Extract the file and copy "Event_Management_System" folder 14 | 15 | 6.Paste inside root directory/ where you install xammp local disk C: drive D: drive E: paste: (for xampp/htdocs, 16 | 17 | 7. Open PHPMyAdmin (http://localhost/phpmyadmin) 18 | 19 | 8. Create a database with name event_db 20 | 21 | 6. Import event_db.sql file(given inside the zip package in SQL file folder) 22 | 23 | 7.Run the script http://localhost/Event_Management_System 24 | 25 | 26 | **LOGIN DETAILS** 27 | Admin 28 | user: admin 29 | pass: admin123 30 | 31 | ****** https:1sourcecodr.blogspot.com ****** 32 | Subcribe my You tube Channel **** 1 Source code **** -------------------------------------------------------------------------------- /header.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | <?php echo $_SESSION['system']['name'] ?> 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /registration.php: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 | 5 |
6 | 7 | 8 |
9 |
10 | 11 | 12 |
13 |
14 | 15 | 16 |
17 |
18 | 19 | 20 |
21 |
22 |
23 | -------------------------------------------------------------------------------- /booking.php: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 | 5 |
6 | 7 | 8 |
9 |
10 | 11 | 12 |
13 |
14 | 15 | 16 |
17 |
18 | 19 | 20 |
21 |
22 | 23 | 24 |
25 |
26 | 27 | 28 |
29 |
30 |
31 | -------------------------------------------------------------------------------- /view_art.php: -------------------------------------------------------------------------------- 1 | 2 | query("SELECT a.*,u.name as aname FROM arts a inner join users u on u.id = a.artist_id where a.id= ".$_GET['id']); 5 | foreach($qry->fetch_array() as $k => $val){ 6 | $$k=$val; 7 | } 8 | 9 | $fs = $conn->query("SELECT * FROM arts_fs where art_id = $id "); 10 | if($fs->num_rows > 0): 11 | $fs_aid = $fs->fetch_array(); 12 | endif; 13 | 14 | } 15 | 16 | ?> 17 | 36 |
37 | 38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 | $v): 54 | if(!in_array($v,array('.','..'))): 55 | 56 | ?> 57 |
58 | 59 |
60 | 66 |
67 |
68 |
69 |

70 |
71 |
72 |
73 | 74 |
75 | For Sale 76 | 77 | Buy 78 |
79 | 80 |
81 |
82 | 83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 | -------------------------------------------------------------------------------- /footer.php: -------------------------------------------------------------------------------- 1 | 11 | 12 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | -------------------------------------------------------------------------------- /home.php: -------------------------------------------------------------------------------- 1 | 4 | 54 |
55 |
56 |
57 |
58 |

Welcome to

59 |
60 | 61 |
62 |
63 |
64 | 65 |
66 |
67 |
68 |
69 |

Upcoming Events

70 |
71 | query("SELECT e.*,v.venue FROM events e inner join venue v on v.id=e.venue_id where date_format(e.schedule,'%Y-%m%-d') >= '".date('Y-m-d')."' and e.type = 1 order by unix_timestamp(e.schedule) asc"); 73 | while($row = $event->fetch_assoc()): 74 | $trans = get_html_translation_table(HTML_ENTITIES,ENT_QUOTES); 75 | unset($trans["\""], $trans["<"], $trans[">"], $trans["",""), array("",","), $desc); 78 | ?> 79 |
80 | 85 |
86 |
87 |
88 |

89 |

90 |
91 | 92 |
93 |
94 | 95 |
96 |
97 | 98 | 99 |
100 |
101 |
102 | 103 | 104 |
105 | 106 | 107 | -------------------------------------------------------------------------------- /view_event.php: -------------------------------------------------------------------------------- 1 | 2 | query("SELECT e.*,v.venue FROM events e inner join venue v on v.id=e.venue_id where e.id= ".$_GET['id']); 5 | foreach($qry->fetch_array() as $k => $val){ 6 | $$k=$val; 7 | } 8 | } 9 | ?> 10 | 63 |
64 |
65 |
66 |
67 |

68 |
69 |

Venue:

70 | 71 |
72 | 73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 | 84 |
85 |
86 | 87 | 128 |

129 | 130 |

131 | 132 |

133 |
134 |
135 |
136 |
137 |
138 |
139 | 140 |
141 |
142 |
143 |
144 |
145 |
146 |
147 | 155 | -------------------------------------------------------------------------------- /venue.php: -------------------------------------------------------------------------------- 1 | 4 | 53 |
54 |
55 |
56 |

List of Our Event Venues

57 |
58 |
59 |
60 |
61 | query("SELECT * from venue order by rand()"); 65 | while($row = $venue->fetch_assoc()): 66 | 67 | $ci++; 68 | if($ci < 3){ 69 | $rtl = ''; 70 | }else{ 71 | $rtl = 'rtl'; 72 | } 73 | if($ci == 4){ 74 | $ci = 0; 75 | } 76 | ?> 77 |
78 |
79 | 80 | 114 |
115 |
116 |
117 |
118 |

119 | 120 |
121 |
122 | 123 |
124 | Rate Per Hour: 125 |
126 |
127 | 128 |
129 |
130 |
131 | 132 | 133 |
134 |
135 |
136 |
137 | 138 |
139 |
140 |
141 |
142 | 143 | 144 | -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | query("SELECT * FROM system_settings limit 1")->fetch_array(); 8 | foreach ($query as $key => $value) { 9 | if(!is_numeric($key)) 10 | $_SESSION['system'][$key] = $value; 11 | } 12 | ob_end_flush(); 13 | include('header.php'); 14 | 15 | 16 | ?> 17 | 18 | 58 | 59 | 60 | 64 | 79 | 80 | 84 | 85 | 86 | 102 | 117 | 131 | 139 |
140 | 163 | 164 | 165 | 166 | 167 | close() ?> 168 | 169 | 170 | --------------------------------------------------------------------------------