0% found this document useful (0 votes)
20 views55 pages

Chirag FILE Modified Updated

Uploaded by

chiragjhangala
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
20 views55 pages

Chirag FILE Modified Updated

Uploaded by

chiragjhangala
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 55

TABLE OF CONTENTS

S.No. Description
1. Certificate
2. Acknowledgement
3. Synopsis
4. Source Code
5. Output
6. File Information
7. Bibliography
ACKNOWLEDGMENT

It is with pleasure that I acknowledge my


sincere gratitude to our teacher, Mrs. Ranjana
Gandhi, who taught and undertook the
responsibility of teaching the subject of
Computer Science. I have greatly benefited
from her classes.
I am especially indebted to our Principal, Mrs.
Prabha Gupta, who has always been a source
of encouragement and support. Without her
inspiration, this project would not have been
successful. I would like to place on record my
heartfelt thanks to her.
Finally, I would like to express my sincere
appreciation to all the other students in my
batch for their friendship and the fine time we
all shared together.
SYNOPSIS
The Cinema Booking System is an interactive software
that allows users to book movie tickets and manage
cinema-related data. It provides different functionalities
for regular users and administrators through a simple,
easy-to-navigate interface.
Key Features:
1. User Authentication:
o Users log in with an employee ID and password.
o Roles: Regular users (book tickets) and
Administrators (manage employees and movies).
2. Movie Booking:
o Users can select movies, choose showtimes, and
pick seats from a virtual theatre layout.
o Available movie formats: 2D, 3D, 4DX.
o Cost calculation based on seat selection and
format.
3. Seat Management:
o Users can view seat availability (represented as
'O' for available and 'X' for booked).
o Option to book or cancel seats and receive
refunds.
4. Admin Features:
o Admins can manage movies (add, remove, view)
and update showtimes.
o Admins can also manage employee records
(view, add, or delete employees).
5. Database Integration:
o Employee data is stored in a MySQL database for
secure login and management.
o Movie data is managed using text files, with
details about genres and formats.
6. File Handling:
o Movie information is stored and updated in text
files.
o User booking data and seat availability are
dynamically updated in the system.
Workflow:
1. Login:
o Users log in with an employee ID and password,
and the system validates them against the
database.
o Based on the role, users can either book movies
or manage the system.
2. Booking Process:
o Users select a movie, showtime, and seat, and
confirm their booking.
o The system displays a theatre seat layout,
updates seat availability, and calculates total
cost.
3. Admin Operations:
o Admins can view and modify employee records
and manage the movie catalogue (add new
movies, delete old ones).
Conclusion:
The Cinema Booking System is a simple yet powerful tool
for managing movie bookings, seat reservations, and
employee data. It offers both user-friendly interfaces for
regular customers and robust administrative controls for
cinema management. The integration with MySQL
ensures secure login and efficient management of
employee data, while text files are used to handle movie-
related information.
Python Source Code
import mysql.connector

from mysql.connector import Error

def Time():

print('''Select Time for Booking:

1) 3 PM to 6 PM

2) 6 PM to 9 PM

3) 9 PM to 12 AM''')

dt={1:"3 PM",2:"6 PM",3:"9 PM"}

global Time

Tim=int(input("Enter :"))

if Tim in dt:

Time=dt[Tim]

else:

print("Invalid Option!")

Time()

def Select_Type_eg():

global egi

global Ty

print('''Select Any Option as Mentioned Below:

1)Bollywood

2)Hollywood

3)Tollywood''')

dst={1:"Bollywood",2:"Hollywood",3:"Tollywood"}

do=int(input("Enter :"))

if do in dst:

Ty=dst[do]

if Ty=="Hollywood":

print('''Select the type of the movie as mentioned below

1)Action

2)Drama
3)Adventure

4)Horror

5)Animation''')

Choice=int(input('Enter'))

dse={1:'Action',2:'Drama',3:'Adventure',4:'Horror',5:'Animation'}

if Choice in dse:

egi=dse[Choice]

else:

print('''Select the type of the movie as mentioned below

1)Action

2)Drama

3)Adventure

4)Horror

5)Comedy''')

Choice=int(input(''))

dse2={1:'Action',2:'Drama',3:'Adventure',4:'Horror',5:'Comedy'}

if Choice in dse2:

egi=dse2[Choice]

else:

print("Enter Valid !")

Select_Type_eg()

def Display_Movies(Ty,egi):

f=open("C:\\Users\\purus\\OneDrive\\Desktop\\"+"SelectMovie"+"\\"+Ty+" "+egi+".txt",'r')

s=(f.read()).split('\n')

ni=1

for j in s:

print(ni,j)

ni=ni+1

d=dict()

for i in range(len(s)):

d[i+1]=s[i]
zi=int(input("Enter Option To See Details of Movie"))

if zi<=len(s):

Mov=d[zi]

Movie_Database(Mov)

else:

print("Enter Valid")

Display_Movies(Ty,egi)

def Add_Movie(Ty,egi):

fa=open("C:\\Users\\purus\\OneDrive\\Desktop\\"+"SelectMovie"+"\\"+Ty+" "+egi+".txt",'a')

f=open("C:\\Users\\purus\\OneDrive\\Desktop\\"+"SelectMovie"+"\\"+Ty+" "+egi+".txt",'r')

s=(f.read()).split('\n')

amo=input('Enter Movie Name You Want To Add : ')

if s==['']:

fa.write(amo)

f.close

fa.close()

else:

fa.write('\n'+amo)

f.close

fa.close()

def Delete_Movie(Ty,egi):

f=open("C:\\Users\\purus\\OneDrive\\Desktop\\"+"SelectMovie"+"\\"+Ty+" "+egi+".txt",'r')

s=(f.read()).split('\n')

ni=1

for j in s:

print(ni,j)

ni=ni+1

d=dict()

for i in range(len(s)):

d[i+1]=s[i]

l=int(input('Choose a Movie Which You Want To Remove: '))


if l not in d:

print('Please Enter Valid!')

else:

d.pop(l)

f.close()

fd=open("C:\\Users\\purus\\OneDrive\\Desktop\\"+"SelectMovie"+"\\"+Ty+"
"+egi+".txt",'w')

Num=0

for v in d.values():

if Num!=len(d)-1:

fd.write(v+'\n')

else:

fd.write(v)

Num+=1

fd.close()

def Select(Type,eg):

f=open("C:\\Users\\purus\\OneDrive\\Desktop\\"+"SelectMovie"+"\\"+Type+"
"+eg+".txt",'r')

s=(f.read()).split('\n')

ni=1

for j in s:

print(ni,j)

ni=ni+1

d=dict()

for i in range(len(s)):

d[i+1]=s[i]

l=int(input('Choose a Movie: '))

if l not in d:

print('Please Enter Valid!')

else:

f.close()

print(d[l])
Movi=d[l]

theater()

Time()

BookingSystem(Movi,Type,screen)

print("Welcome To Cinema System")

role=''

def Display_Data():

mycon = None

try:

mycon = mysql.connector.connect(

host='localhost',

user='root',

passwd='sqQuUAalo21&900',

database='sys'

cursor = mycon.cursor()

query="SELECT *FROM bookingsystem"

cursor.execute(query)

data=cursor.fetchall()

from prettytable import PrettyTable

dat=PrettyTable()

l1=['Id','Name','Password','Role','Description']

dat.field_names=l1

for j in data:

dat.add_row(j)

dat.sortby='Id'

print(dat)

except Error as err:

print('Error:',err)

finally:

if mycon and mycon.is_connected():


mycon.close()

print('')

def Add_Employee():

mycon = None

try:

mycon = mysql.connector.connect(

host='localhost',

user='root',

passwd='sqQuUAalo21&900',

database='sys'

Id=int(input("Enter id"))

name=input("Enter name")

password=input("Enter pass")

rol=input("Enter Role")

roldis=input("Enter role discription")

cursor = mycon.cursor()

query=f"INSERT INTO bookingsystem (EmpId,Name,password,role,role_description)


VALUES {(Id,name,password,rol,roldis)} "

cursor.execute(query)

mycon.commit();

except Error as err:

print("Error:",err)

finally:

if mycon and mycon.is_connected():

mycon.close()

def Remove_Employee():

mycon = None

try:

mycon = mysql.connector.connect(

host='localhost',
user='root',

passwd='sqQuUAalo21&900',

database='sys'

cursor = mycon.cursor()

Id=int(input("Enter Id:"))

query=f"DELETE FROM bookingsystem WHERE EmpId={Id}"

cursor.execute(query)

mycon.commit();

except Error as err:

print("Error:",err)

finally:

if mycon and mycon.is_connected():

mycon.close()

print('')

def Authentication():

mycon = None

try:

mycon = mysql.connector.connect(

host='localhost',

user='root',

passwd='sqQuUAalo21&900',

database='sys'

print('______________________________________')

if mycon.is_connected():

print('______________________________________')

else:

print('Failed to connect to the database')

return

cursor = mycon.cursor()
query="SELECT *FROM bookingsystem WHERE empid=%s and password = %s"

EmpId=input("Enter your Id: ")

password=input("Enter your password: ")

cursor.execute(query, (EmpId,password,))

data=cursor.fetchone()

global role

if data:

role=data[3]

else:

role="n"

print('Invalid user or password')

except Error as err:

print("Error:",err)

finally:

if mycon and mycon.is_connected():

mycon.close()

print('')

CinemaSystem(role)

def Movie_Database(Mov):

print('')

for movie in Movie_database:

if movie['name'].lower() ==Mov.lower():

for i in movie['description']:

print(i)

else:

print("Movie Details Unvailable")

break

print('')

def Readfile(Movi,screen,Type):

global h
h="C:\\Users\\purus\\OneDrive\\Desktop\\Cinema
Sytstem\\Threater\\Screens"+"\\"+screen+"\\"+Type+"\\"+Time+"\\"+Movi+'('+screen+')'+".txt"

f=open(h,"r")

re=f.read()

print(re)

f.close()

def Writefile(Movi,screen,Type):

global h

h="C:\\Users\\purus\\OneDrive\\Desktop\\Cinema
Sytstem\\Threater\\Screens"+"\\"+screen+"\\"+Type+"\\"+Time+"\\"+Movi+'('+screen+')'+".txt"

s=""

f=open(h,"w")

for i in range(len(l)):

r2=l[i]

for j in range(len(r2)):

s=s+l[i][j]

s=s+"\n"

f.write(s)

f.close()

def createTheatre(l):

global r

r=9

global c

c=10

l.append([' 1 ','2 ','3 ','4 ' ,'5 ', ' 6 ','7 ','8 ','9 ','10 '])

for i in range(r):

rl=list()

rl.append(str(i+1)+' ')

for j in range(c//2):

rl.append("O ")

rl.append('___ ')

for j in range(c//2,c):
rl.append("O ")

l.append(rl)

def Bookseats(Movi,Type):

global ticket

global Tempticket

Tempticket=0

if ticket>0:

for k in range(ticket):

Writefile(Movi,screen,Type)

row,col=eval(input("Enter row,column of your seat-"))

if col>c//2:

l[row][col+1]='X '

ticket=ticket-1

Tempticket=Tempticket+1

else:

l[row][col]='X '

ticket=ticket-1

Tempticket=Tempticket+1

print("Your Booking has successfully completed")

ticket=0

else:

print("Buy Tickets First")

theater()

def displayseats(l,Movi,screen,Type):

Writefile(Movi,screen,Type)

Readfile(Movi,screen,Type)

def theater():

print("Which Format Do You Want To Watch Movie: ")

print("1) Standard Digital(2D)")

print("2) RealD 3D")

print("3) 4DX")
scr={1:'Standard Digital(2D)',2:'RealD 3D',3:'4DX'}

a = int(input("choose your screen: "))

if a==1:

cost=500

print('Cost-',cost)

elif a==2:

cost=1000

print('Cost-',cost)

elif a==3:

cost=2000

print('Cost-',cost)

else:

print('Enter Valid')

theater()

global screen

screen=scr[a]

global ticket

ticket=int(input("number of ticket do you want?: "))

s=1

for i in range(1,ticket+1):

s=cost*i

print('Total cost',s)

z=input("Enter (y/n) to pay or not")

if z in 'Yy':

print("Choose your seats please")

elif z in "Nn":

theater()

else:

print("Enter Valid")

theater()

def cancel_seat():
global Tempticket

ti=int(input("Enter Number of Tickets You Want to Cancel"))

if ti<=Tempticket:

for k in range(ti):

row,col=eval(input("Enter row,column of your seat-"))

if col>c//2:

l[row][col+1]='O '

Tempticket=Tempticket-1

else:

l[row][col]='O '

Tempticket=Tempticket-1

print("Your Booking has successfully Cancelled And Money Also been Refunded")

else:

print("Enter Valid!")

return

l=list()

createTheatre(l)

def BookingSystem(Movi,Type,screen):

while True:

print("--- Cinema Booking System ---")

print("1. Display the available seats")

print("2. Book a Seat")

print("3. Cancel a Seat")

print("4. Exit to Movie Menu")

choice=str(int(input("Enter option number-")))

if choice == '1':

displayseats(l,Movi,screen,Type)

elif choice == '2':

Bookseats(Movi,Type)

elif choice == '3':

cancel_seat()
elif choice == '4':

break

else:

print("Invalid choice. Please select a valid option.")

print('''1)Book a Seat

2)Back to Booking Menu

3)Main Menu''')

cho=int(input("Enter Choice: "))

if cho==1:

Bookseats(Movi,Type)

if cho==2:

print('')

if cho==3:

break

if cho>3 or cho<1:

print("Enter Valid Choice")

def MovieSystem():

while True:

print('''---Select any options mentioned below!---

1)Bollywood

2)Hollywood

3)Tollywood''')

global Ch

Ch=int(input(""))

Typi={1:'Bollywood',2:'Hollywood',3:'Tollywood'}

Type=Typi[Ch]

if Ch==1:

print('''Select the type of the movie as mentioned below

1)Action

2)Drama

3)Adventure
4)Horror

5)Comedy''')

Choice=int(input(''))

dc1={1:'Action',2:'Drama',3:'Adventure',4:'Horror',5:'Comedy'}

if Choice in dc1:

eg=dc1[Choice]

Select(Type,eg)

elif Ch==2:

print('''Select the type of the movie as mentioned below

1)Action

2)Drama

3)Adventure

4)Horror

5)Animation''')

Choice=int(input('Enter'))

dc2={1:'Action',2:'Drama',3:'Adventure',4:'Horror',5:'Animation'}

if Choice in dc2:

eg=dc2[Choice]

Select(Type,eg)

elif Ch==3:

print('''Select the type of the movie as mentioned below

1)Action

2)Drama

3)Adventure

4)Horror

5)Comedy''')

Choice=int(input('Enter'))

dc3={1:'Action',2:'Drama',3:'Adventure',4:'Horror',5:'Comedy'}

if Choice in dc3:

eg=dc3[Choice]

Select(Type,eg)
else:

print("Enter valid")

s=input("Enter (y/n) to go back to Booking System or not-")

if s in "nN":

break

elif s not in "Yy" and s not in "Nn":

print('Enter valid')

def CinemaSystem(role):

if role=='admin':

while True:

print("---Select the below options---")

print("1.Movies")

print("2.Employees Data")

print("3.Exit")

g=int(input(""))

if g==1:

print('''---Select the below options---

1)Book a Movie

2)Add a Movie

3)Remove a Movie

4)Display Movies Data''')

zo=int(input("Enter :"))

if zo in [1,2,3,4]:

if zo==1:

MovieSystem()

elif zo==2:

Select_Type_eg()

Add_Movie(Ty,egi)

elif zo==3:

Select_Type_eg()

Delete_Movie(Ty,egi)
elif zo==4:

Select_Type_eg()

Display_Movies(Ty,egi)

else:

print("Enter Valid!")

CinemaSystem(role)

elif g==2:

print('''---Select the below options---

1)Add Employee Data

2)Remove Employee Data

3)Display Employee Data''')

zo=int(input("Enter :"))

if zo in [1,2,3]:

if zo==1:

Add_Employee()

elif zo==2:

Remove_Employee()

elif zo==3:

Display_Data()

else:

print("Enter Valid!")

CinemaSystem(role)

elif g==3:

print("Thank you for visiting!")

break

else:

print("Enter Valid no.")

elif role=='n':

Authentication()

else:

while True:
print("---Select the below options---")

print("1.Movies")

print("2.Exit")

g=int(input(""))

if g==1:

MovieSystem()

elif g==2:

print("Thank you for visiting!")

break

else:

print("Enter Valid no.")

Movie_database = [

{"name": "Jawan (2023)", "description": ["Intro: Action-packed film about a vigilante fighting
against corruption","Director: Atlee","Writers: Atlee","Stars: Shah Rukh Khan"]},

{"name": "Antim: The Final Truth (2021)", "description": ["Intro: A gritty crime drama
revolving around the battle between a cop and a gangster","Director: Mahesh
Manjrekar","Writers: Abhijit Khandkekar","Stars: Salman Khan, Aayush Sharma"]},

{"name": "Tanhaji: The Unsung Warrior (2020)", "description": ["Intro: A historical drama
about the life of Maratha warrior Tanhaji Malusare","Director: Om Raut","Writers: Prakash
Kapadia","Stars: Ajay Devgn, Kajol, Saif Ali Khan"]},

{"name": "Pathaan (2023)", "description": ["Intro: A high-octane action film featuring a spy
on a mission to save India","Director: Siddharth Anand","Writers: Shridhar Raghavan","Stars:
Shah Rukh Khan, Deepika Padukone, John Abraham"]},

{"name": "Sardar Udham (2021)", "description": ["Intro: Biographical film about the
revolutionary Udham Singh","Director: Shoojit Sircar", "Writers: Shubhendu Bhattacharya",
"Stars: Vicky Kaushal"]},

{"name": "Deadpool & Wolverine (2024)", "description": ["Intro: Anticipated superhero


film featuring the iconic characters", "Director: Unknown", "Stars: Ryan Reynolds, Hugh
Jackman"]},

{"name": "Dune: Part Two (2024)", "description": ["Intro: Continuation of the epic saga set
in a distant future","Director: Denis Villeneuve","Stars: Timothée Chalamet","Stars:Zendaya"]},

{"name": "Guardians of the Galaxy Vol. 3 (2023)", "description": ["Intro: The beloved team
of misfits returns for another cosmic adventure","Director: James Gunn", "Stars: Chris Pratt, Zoe
Saldana, Dave Bautista"]},

{"name": "Godzilla x Kong: The New Empire (2024)", "description": ["Intro: A clash of
titans as Godzilla and Kong unite against a new threat","Director: Adam Wingard","Stars:
Unknown"]},
{"name": "John Wick: Chapter 4 (2023)", "description": ["Intro: The legendary assassin
continues his fight against the high table", "Director: Chad Stahelski", "Stars: Keanu Reeves,
Donnie Yen"]},

{"name": "Pushpa: The Rise (2021)", "description": ["Intro: A story of a red sandalwood
smuggler", "Director: Sukumar", "Stars: Allu Arjun, Rashmika Mandanna"]},

{"name": "RRR (2022)", "description": ["Intro: A fictional tale of two legendary


revolutionaries", "Director: S.S. Rajamouli", "Stars: N.T. Rama Rao Jr.", "Ram Charan"]},

{"name": "Sardar (2022)", "description": ["Intro: A biopic about the life of Sardar
Vallabhbhai Patel","Director: Unknown","Stars: Unknown"]},

{"name": "Sita Ramam (2022)", "description": ["Intro: A romantic drama set against the
backdrop of war","Director: Hanu Raghavapudi", "Stars: Dulquer Salmaan, Mrunal Thakur"]},

{"name": "Saalar (2024)", "description": ["Intro: An upcoming action film starring Prabhas",
"Director: Prashanth Neel", "Stars: Prabhas, Shruti Haasan"]},

{"name": "Darlings (2022)", "description": ["Intro: A dark comedy exploring the


complexities of relationships", "Director: Jasmeet K. Reen", "Stars: Alia Bhatt,Shefali Shah"]},

{"name": "Gangubai Kathiawadi (2022)", "description": ["Intro: The life story of a woman
who rises to power in the underworld","Director: Sanjay Leela Bhansali","Stars: Alia Bhatt"]},

{"name": "Shershaah (2021)", "description": ["Intro: A biographical war film based on


Captain Vikram Batra","Director: Vishnuvardhan","Stars: Sidharth Malhotra, Kiara Advani"]},

{"name": "83 (2021)", "description": ["Intro: A sports drama about India's historic cricket
World Cup win","Director: Kabir Khan","Stars: Ranveer Singh, Deepika Padukone"]},

{"name": "Chandigarh Kare Aashiqui (2021)", "description": ["Intro: A romantic drama


tackling issues of gender identity","Director: Abhishek Kapoor", "Stars: Ayushmann Khurrana,
Vaani Kapoor"]},

{"name": "The Whale (2022)", "description": ["Intro: A poignant drama about a reclusive
English teacher","Director: Darren Aronofsky", "Stars: Brendan Fraser, Sadie Sink"]},

{"name": "Killers of the Flower Moon (2023)", "description": ["Intro: A historical crime
drama set in 1920s America", "Director: Martin Scorsese", "Stars: Leonardo DiCaprio, Robert De
Niro"]},

{"name": "A Man Called Otto (2023)", "description": ["Intro: A heartfelt comedy-drama
about an irritable man","Director: Marc Forster","Stars: Tom Hanks"]},

{"name": "A Beautiful Life (2023)", "description": ["Intro: A touching drama about love and
loss", "Director: Unknown", "Stars: Unknown"]},

{"name": "The Lost King (2022)", "description": ["Intro: A historical drama about the
discovery of Richard III's remains", "Director: Stephen Frears", "Stars: Sally Hawkins"]},

{"name": "Maharshi (2019)", "description": ["Intro: A story about a successful businessman


returning to his village to fight for its people","Director: Vamsi Paidipally", "Stars: Mahesh
Babu, Pooja Hegde, Allari Naresh"]},
{"name": "Jathi Ratnalu (2021)", "description": ["Intro: A comedy about three friends who
get embroiled in a murder case", "Director: KV Anudeep", "Stars: Naveen Polishetty,
Priyadarshi, Rahul Ramakrishna"]},

{"name": "Hero (2022)", "description": ["Intro: A romantic action film about a young man's
journey", "Director: Sreenu Vaitla", "Stars: Aadi Saikumar, Nivetha Pethuraj"]},

{"name": "Samajavaragamana (2023)", "description": ["Intro: A romantic drama exploring


love and relationships","Director: Unknown","Stars: Unknown"]},

{"name": "Ustaad Bhagat Singh (2023)", "description": ["Intro: An action film based on the
legendary freedom fighter","Director:Unknown","Stars: Unknown"]},

{"name": "Zindagi Na Milegi Dobara (2011)", "description": ["Intro: A coming-of-age story


about friendship and self-discovery","Director: Zoya Akhtar", "Stars: Hrithik Roshan, Farhan
Akhtar, Abhay Deol"]},

{"name": "Dil Dhadakne Do (2015)", "description": ["Intro: A family drama set on a cruise,
exploring relationships", "Director: Zoya Akhtar", "Stars: Ranveer Singh, Priyanka Chopra,
Anushka Sharma"]},

{"name": "Bajrangi Bhaijaan (2015)", "description": ["Intro: A touching story of a man who
helps a mute girl find her family", "Director: Kabir Khan", "Stars: Salman Khan, Harshaali
Malhotra"]},

{"name": "2 States (2014)", "description": ["Intro: A romantic drama based on the book by
Chetan Bhagat", "Director: Abhishek Varman", "Stars: Arjun Kapoor, Alia Bhatt"]},

{"name": "War (2019)", "description": ["Intro: An action thriller featuring a battle between
two spies", "Director: Siddharth Anand", "Stars: Hrithik Roshan, Tiger Shroff"]},

{"name": "Indiana Jones and the Dial of Destiny (2023)", "description": ["Intro: The iconic
archaeologist returns for another thrilling adventure", "Director: James Mangold", "Stars:
Harrison Ford, Phoebe Waller-Bridge"]},

{"name": "Tire Marvels (2023)", "description": ["Intro: A comedic take on the world of
racing","Director: Unknown","Stars: Unknown"]},

{"name": "Dungeons & Dragons: Honor Among Thieves (2023)", "description": ["Intro:A
fantasy adventure based on the iconic game","Director: John Francis Daley","Stars: Chris Pine,
Michelle Rodriguez"]},

{"name": "The Lost City of D (2024)", "description": ["Intro: An adventure comedy


featuring treasure hunters","Director: Unknown","Stars: Unknown"]},

{"name": "Avatar: The Way of Water (2022)", "description": ["Intro: A sequel exploring
Pandora's underwater world", "Director: James Cameron", "Stars: Sam Worthington, Zoe
Saldaña, Sigourney Weaver, Kate Winslet"]},

{"name": "Sye Raa Narasimha Reddy (2019)", "description": ["Intro: Historical drama about
freedom fighter Uyyalawada Narasimha Reddy"]},
{"name": "Akhanda (2021)","description":["Intro:Action film about a devotee of Lord Shiva
fighting corruption","Director: Boyapati Srinu","Stars: Nandamuri Balakrishna, Pragya
Jaiswal."]},

{"name": "Bangarraju (2022)","description": ["Intro:Fantasy drama about love and family


legacy","Director: Kalyan Krishna Kurasala","Stars: Nagarjuna Akkineni,Naga Chaitanya."]},

{"name": "The Ghost (2022)","description": ["Intro:Action thriller featuring a former RAW


agent seeking revenge","Director: Prashanth Neel","Stars: Nagarjuna Akkineni, Sonal
Chauhan."]},

{"name": "Shyam Singha Roy (2021)","description":["Intro:Romantic drama with a


supernatural twist","Director:Rahul Sankrityan","Stars: Nani, Krithi Shetty."]},

{"name": "Suzume no Tojimari (2022)","description": ["Intro:Animated adventure about a


girl closing doors to prevent disasters","Director: Makoto Shinkai","Stars: Nanoka Hara."]},

{"name": "Jujutsu Kaisen 0 (2021)","description":["Intro:Prequel focusing on Yuta


Okkotsu","Director: Sunghoo Park","Stars: Megumi Ogata."]},

{"name": "Puss in Boots: The Last Wish (2022)","description":["Intro:Adventure featuring


Puss in Boots on a quest to restore his nine lives","Director: Joel Crawford","Stars: Antonio
Banderas, Salma Hayek"]},

{"name": "Spider-Man: Across the Spider-Verse (2023)","description":["Intro:Sequel


following Miles Morales in the multiverse","Directors:Joaquim Dos Santos, Kemp
Powers","Stars: Shameik Moore."]},

{"name": "The Boss Baby: Family Business (2021)","description":["Intro:Animated sequel


about the Templeton brothers navigating parenthood","Director: Tom McGrath","Stars: Alec
Baldwin."]},

{"name": "Tumbbad (2018)","description": ["Intro:Horror-fantasy about greed and ancestral


secrets","Directors: Rahi Anil Barv","Stars: Sohum Shah."]},

{"name": "Stree (2018)","description": ["Intro:Horror-comedy about a malevolent spirit in a


small town","Directors: Amar Kaushik","Stars: Rajkummar Rao, Shraddha Kapoor."]},

{"name": "Stree 2 (2024)","description": ["Intro:Sequel continuing the story of the town's


spirit","Director:Amar Kaushik","Stars:Rajkummar Rao."]},

{"name": "Bhool Bhulaiyaa 2 (2022)","description": ["Intro:Horror-comedy about a haunted


mansion","Director: Anees Bazmee","Stars: Kartik Aaryan, Kiara Advani."]},

{"name": "Munjya (2024)","description": ["Intro:Upcoming film about a rural hero's


journey","Director: Unknown."]},

{"name": "Evil Dead Rise (2023)","description": ["Intro:New chapter in the horror franchise,
featuring a family in peril","Director: Lee Cronin","Stars: Alyssa Sutherland."]},

{"name": "Speak No Evil (2022)","description":["Intro:Psychological horror exploring the


consequences of kindness","Director: Christian Tafdrup","Stars: Morten Burian."]},

{"name": "Alien: Romulus (2024)", "description": ["Intro: Upcoming addition to the iconic
sci-fi franchise","Director:Fede Álvarez","Stars: Unknown"]},
{"name": "Smile (2022)", "description": ["Intro: A psychological horror film about a
therapist haunted by traumatic experiences","Director: Parker Finn", "Writers: Parker
Finn","Stars: Sosie Bacon, Jessie T. Usher"]},

{"name": "Insidious: The Red Door (2023)", "description": ["Intro: The fifth installment in
the Insidious franchise, focusing on the Lambert family", "Director: Patrick Wilson","Writers:
Scott Teems", "Stars: Ty Simpkins, Patrick Wilson"]},

{"name": "Geethanjali Malli Vachindi (2024)", "description": ["Intro: Upcoming romantic


drama", "Director: Unknown", "Stars: Unknown"]},

{"name": "Kajal Karthika (2023)", "description": ["Intro: Upcoming drama film", "Director:
Unknown", "Stars: Unknown"]},

{"name": "Calling Sahasra (2023)", "description": ["Intro: A thriller exploring a mysterious


call that changes lives","Director: Unknown","Stars: Unknown"]},

{"name": "Maa Oori Polimera 2 (2023)", "description":[ "Intro: Sequel to the hit comedy
about village life and relationships","Director: Unknown","Stars: Unknown"]},

{"name": "Demonte Colony 2 (2024)", "description": ["Intro: Sequel to the horror-thriller


about a haunted house", "Director: Unknown", "Stars: Unknown"]},

{"name": "Hera Pheri (2000)", "description": ["Intro: A classic comedy about three men and
their misadventures", "Director: Priyadarshan", "Writers: Neeraj Vora", "Stars: Akshay Kumar,
Sunil Shetty, Paresh Rawal"]},

{"name": "Housefull (2010)", "description": ["Intro: A comedy about a man who wants to
marry a woman from a dysfunctional family", "Director: Sajid Khan", "Writers: Farhad
Samji","Stars: Akshay Kumar, Riteish Deshmukh, Deepika Padukone"]},

{"name": "Phir Hera Pheri (2006)", "description": ["Intro: The hilarious sequel to Hera
Pheri, featuring more chaos, Director: Neeraj Vora", "Writers: Neeraj Vora", "Stars: Akshay
Kumar, Sunil Shetty, Paresh Rawal"]},

{"name": "Dhamaal (2007)", "description": ["Intro: A comedy about four lazy men who go
on a treasure hunt, Director: Indra Kumar", "Writers: Vidhu Vinod Chopra", "Stars: Arshad
Warsi, Riteish Deshmukh, Javed Jaffrey"]},

{"name": "Total Dhamaal (2019)", "description": ["Intro: The third installment in the
Dhamaal series, packed with comedy and adventure", "Director: Indra Kumar", "Writers:
Original screenplay by Indra Kumar", "Stars: Ajay Devgn, Anil Kapoor, Madhuri Dixit"]},

{"name": "Uruku Patela (2024)", "description": ["Intro: Upcoming film with a fresh
storyline", "Director: Unknown", "Stars: Unknown"]},

{"name": "Aay (2024)", "description": ["Intro: Upcoming drama film exploring family
dynamics", "Director: Unknown", "Stars: Unknown"]},

{"name": "Buddy (2024)", "description": ["Intro: Upcoming film focusing on friendship and
adventure", "Director: Unknown", "Stars: Unknown"]},

{"name": "Brahmachari (2024)", "description": ["Intro: A romantic drama about love and
self-discovery","Director: Unknown", "Stars: Unknown"]},
{"name": "Love Guru (2024)", "description": ["Intro: Upcoming romantic comedy about a
love consultant","Director: Unknown", "Stars: Unknown"]}]

Authentication()

-------------------------------------------------------------End-------------------------------------------------------------
OUTPUT
Admin→Movies→Book Movies→Bollywood→Action
→Jawan (2023) →Standard Digital(2D) →Display Seats
→Book a Seat→Display Seats→Cancel Seats →Display Seats
Hollywood→Action→John Wick : Chapter 4 (2023)
→4DX→Display Seats →Book a Seat→Display Seats
Tollywood→Action→Pushpa: The Rise(2021) →RealD 3D
→Display Seats →Book a Seat→Display Seats
Admin→Movies→Add Movies→Bollywood→Action→Movies
→Bollywood→Action→Movie Details→Jawan (2023)
Admin→Movies→Remove Movies→Bollywood→Action
→Movies→Bollywood→Action
Admin→Employees Data→Add Employees
→Display Employees Data
Admin→Employees Data→Remove Employees
→Display Employees Data
Employee→ Movies→Book Movies→Bollywood→Action
→Gangubai Kathiawadi →Standard Digital(2D) →Display
Seats →Book a Seat→Display Seats

You might also like