SlideShare a Scribd company logo
1 of 105
1101112131423456789
all_codes_i_learnt_before/cms_part1/admin_add_movie_start.ph
p
Add a MovieTitle:Year:Genre:Action
Comedy
Drama
Horror
Science Fiction
Director:Image:Info:Status:Available
Rented
Not in Stock
Rating:Format:
Widescreen
FullscreenReview:
(out of 5)Studio:Runtime:
(hh:mm)Region:
all_codes_i_learnt_before/cms_part1/admin_addmovie_upload.p
hp
<?php
require_once("connect.php");
$title = $_POST['movie_title'];
$year = $_POST['movie_year'];
$genre = $_POST['movie_genre'];
$director = $_POST['movie_director'];
$image = $_POST['movie_image'];//needs script to upload file
$info = $_POST['movie_info'];
$status = $_POST['movie_status'];
$rating = $_POST['movie_rating'];
$format = $_POST['movie_format'];
$review = $_POST['movie_review'];
$studio = $_POST['movie_studio'];
$runtime = $_POST['movie_runtime'];
$region = $_POST['movie_region'];
$thumb = "th_".$image;
$qstring = "INSERT INTO tbl_movies
VALUES(NULL,'".$title."','".$year."','".$genre."','".$director."',
'".$thumb."','".$image."','".$info."','".$status."','".$rating."','".$f
ormat."','".$review."','".$studio."','".$runtime."','".$region."')";
//Punctuation mark is very important in this area. ,'".$variable
name."'
$insert = mysql_query($qstring);
header("location: admin_add_movie_start.php");//all these code
is to add data to the database
?>
all_codes_i_learnt_before/cms_part1/connect.php
<?php
mysql_connect("localhost","root","");
mysql_select_db("movie_db");
?>
all_codes_i_learnt_before/cms_part1/db_movies.sql
-- phpMyAdmin SQL Dump
-- version 3.2.4
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Feb 15, 2010 at 04:00 PM
-- Server version: 5.1.37
-- PHP Version: 5.2.11
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
/*!40101 SET
@[email protected]@CHARACTER_SET_CLIENT */;
/*!40101 SET
@[email protected]@CHARACTER_SET_RESULTS */;
/*!40101 SET
@[email protected]@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Database: 'db_dvdsite'
--
-- --------------------------------------------------------
--
-- Table structure for table 'tbl_movies'
--
CREATE TABLE tbl_movies (
movie_id smallint(4) unsigned NOT NULL
AUTO_INCREMENT,
movie_title varchar(150) NOT NULL,
movie_year year(4) NOT NULL,
movie_genre varchar(50) NOT NULL,
movie_director varchar(100) NOT NULL,
movie_thumb varchar(100) NOT NULL,
movie_image varchar(100) NOT NULL,
movie_info text NOT NULL,
movie_status varchar(20) NOT NULL,
movie_rating varchar(6) NOT NULL,
movie_format varchar(20) NOT NULL,
movie_review int(4) DEFAULT NULL,
movie_studio varchar(120) NOT NULL,
movie_runtime varchar(25) DEFAULT NULL,
movie_region varchar(2) DEFAULT NULL,
PRIMARY KEY (movie_id)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table 'tbl_movies'
--
INSERT INTO tbl_movies VALUES(1, 'Dr. Strangelove', 1960,
'Comedy', 'Kubrick', 'strangeloveth.jpg', 'strangelove.jpg',
'Arguably the greatest black comedy ever made, Stanley
Kubrick''s cold-war classic is the ultimate satire of the nuclear
age. Dr. Strangelove is a perfect spoof of political and military
insanity, beginning when General Jack D. Ripper (Sterling
Hayden), a maniacal warrior obsessed with "the purity of
precious bodily fluids," mounts his singular campaign against
Communism by ordering a squadron of B-52 bombers to attack
the Soviet Union. The Soviets counter the threat with a so-
called "Doomsday Device," and the world hangs in the balance
while the U.S. president (Peter Sellers) engages in hilarious
hot-line negotiations with his Soviet counterpart.', 'Rented',
'PG-13', 'Widescreen', 4, 'Warner Brothers', '172 Minutes', '1');
INSERT INTO tbl_movies VALUES(2, 'Blue Velvet', 1986,
'Drama', 'Lynch', 'velvetth.jpg', 'velvet.jpg', 'A man returns to
his home town after being away and discovers a severed human
ear in a field. Not satisfied with the police''s pace, he and the
police detective''s daughter carry out their own investigation.
The object of his investigation turns out to be a beautiful and
mysterious woman involved with a violent and perversely evil
man.', 'Available', 'R', 'Widescreen', 3, 'New Line', '154
Minutes', '0');
INSERT INTO tbl_movies VALUES(3, 'Mulholland Drive',
2001, 'Drama', 'Lynch', 'mulhollandth.jpg', 'mulholland.jpg',
'Pandora couldn''t resist opening the forbidden box containing
all the delusions of mankind, and let''s just say David Lynch, in
Mulholland Drive, indulges a similar impulse. Employing a
familiar film noir atmosphere to unravel, as he coyly puts it, "a
love story in the city of dreams," Lynch establishes a
foreboding but playful narrative in the film''s first half before
subsuming all of Los Angeles and its corrupt ambitions into his
voyeuristic universe of desire. Identities exchange, amnesia
proliferates, and nightmare visions are induced, but not before
we''ve become enthralled by the film''s two main characters: the
dazed and sullen femme fatale, Rita (Laura Elena Harring), and
the pert blonde just-arrived from Ontario (played exquisitely by
Naomi Watts) who decides to help Rita regain her memory.
Triggered by a rapturous Spanish-language version of Roy
Orbison''s "Crying," Lynch''s best film since Blue Velvet splits
glowingly into two equally compelling parts.', 'Rented', 'R',
'Fullscreen', 4, 'New Line', '173 Minutes', '1');
INSERT INTO tbl_movies VALUES(4, 'Eraserhead', 1977,
'Science Fiction', 'Lynch', 'eraserheadth.jpg', 'eraserhead.jpg', 'Is
it a nightmare or an actual view of a post-apocalyptic world?
Set in an industrial town in which giant machines are constantly
working, spewing smoke, and making noise that is inescapable,
Henry Spencer lives in a building that, like all the others,
appears to be abandoned. The lights flicker on and off, he has
bowls of water in his dresser drawers, and for his only diversion
he watches and listens to the Lady in the Radiator sing about
finding happiness in heaven. Henry has a girlfriend, Mary X,
who has frequent spastic fits. Mary gives birth to Henry''s child,
a frightening looking mutant, which leads to the injection of all
sorts of sexual imagery into the depressive and chaotic mix.',
'Available', 'PG-13', 'Widescreen', 3, 'Paramount', '98 Minutes',
'1');
INSERT INTO tbl_movies VALUES(5, 'Seven Samurai', 1954,
'Action', 'Kurosawa', 'samuraith.jpg', 'samurai.jpg', 'Hailed as
the greatest film in the history of Japanese cinema, Seven
Samurai is director Akira Kurosawa''s undisputed masterpiece.
Arguably the greatest of all jidai-gecki (or historical swordplay
films), Kurosawa''s classic 1954 action drama has never been
surpassed in terms of sheer power of emotion, kinetic energy,
and dynamic character development. The story is set during the
civil unrest of 16th-century Japan, as the cowering residents of
a small farming village are seeking protection against seasonal
attacks by a band of marauding bandits. Offering mere handfuls
of rice as payment, they hire seven unemployed "ronin"
(masterless samurai), including a boastful swordsman (Toshiro
Mifune) who is actually a peasant farmer''s son, desperately
seeking glory, acceptance, and revenge against those who
destroyed his family. Led by the calmly strategic Kambei
(Takashi Shimura, star of Kurosawa''s previous classic, Ikiru),
the samurai form mutual bonds of honor and respect, but remain
distant from the villagers, knowing that their assignment may
prove to be fatal.', 'Available', 'PG-13', 'Widescreen', 5, 'Toho',
'183 Minutes', '0');
INSERT INTO tbl_movies VALUES(6, 'Throne of Blood', 1961,
'Drama', 'Kurosawa', 'throneth.jpg', 'throne.jpg', 'One of the
most celebrated screen adaptations of Shakespeare into film,
Akira Kurosawaís Throne of Blood re-imagines Macbeth in
feudal Japan. Starring Kurosawaís longtime collaborator
Toshiro Mifune and the legendary Isuzu Yamada as his ruthless
wife, the film tells of a valiant warriorís savage rise to power
and his ignominious fall. With Throne of Blood, Kurosawa
fuses one of Shakespeareís greatest tragedies with the formal
elements of Japanese Noh theater to make a Macbeth that is all
his ownóa classic tale of ambition and duplicity set against a
ghostly landscape of fog and inescapable doom.', 'Rented', 'PG-
13', 'Widescreen', 5, 'Toho', '212 Minutes', '0');
INSERT INTO tbl_movies VALUES(7, 'High and Low', 1963,
'Drama', 'Kurosawa', 'highlowth.jpg', 'highlow.jpg', 'Although
best known for his samurai classics, Japanese master filmmaker
Akira Kurosawa proved himself equally adept at contemporary
dramas and thrillers, and 1962''s High and Low offers a
powerful showcase for Kurosawa''s versatile skill. The great
Toshiro Mifune stars as a wealthy industrialist who has just
raised a large sum of money to execute his planned takeover of
a successful shoe manufacturer. Fate intervenes when he
receives a phone call informing him that his son has been
kidnapped, and by unfortunate coincidence the ransom demand
is nearly equivalent to the amount Mifune has raised for his
corporate coup. A philosophical dilemma emerges when it is
revealed that the executive''s son is safe, and that it is actually
his chauffeur''s son who has been taken. What follows is both a
tense detective thriller, as the police attempt to track down the
kidnapper, and a compelling illustration of class division in
Japan--the "high and low" of the title.', 'Available', 'PG-13',
'Fullscreen', 4, 'Toho', '132 Minutes', '0');
INSERT INTO tbl_movies VALUES(8, 'Female Trouble', 1974,
'Comedy', 'Waters', 'femaleth.jpg', 'female.jpg', 'John Waters
expands the definition of female trouble in this mutant tribute to
good-girl-gone-bad drive-in melodramas. The girl is, of course,
cross-dressing cult icon Divine, Waters''s plus-sized muse.
Divine is at her most gleefully outrageous as teenage brat Dawn
Davenport, who runs away from home and into a life of wanton
hedonism all because she didn''t get cha-cha heels for
Christmas. Almost immediately she''s molested by a sleazy
motorcycle thug (also played by Divine--is this Waters''s idea of
"love thyself"?), but she doesn''t let motherhood interfere with
her plans of stardom and turns herself into an unlikely fashion
statement in an apocalyptic fashion show. Waters''s fourth
feature, a follow-up to the midnight movie hit Pink Flamingos,
is just as cinematically primitive and even more gleefully
vulgar, right down to the electric climax of Dawn''s road to
everlasting fame.', 'Rented', 'R', 'Fullscreen', 3, 'United Artists',
'122 Minutes', '1');
INSERT INTO tbl_movies VALUES(9, 'The Godfather', 1972,
'Drama', 'Coppola', 'godfatherth.jpg', 'godfather.jpg', 'Generally
acknowledged as a bona fide classic, this Francis Ford Coppola
film is one of those rare experiences that feels perfectly right
from beginning to end--almost as if everyone involved had been
born to participate in it. Based on Mario Puzo''s bestselling
novel about a Mafia dynasty, Coppola''s Godfather extracted
and enhanced the most universal themes of immigrant
experience in America: the plotting-out of hopes and dreams for
one''s successors, the raising of children to carry on the good
work, etc. In the midst of generational strife during the Vietnam
years, the film somehow struck a chord with a nation fascinated
by the metamorphosis of a rebellious son (Al Pacino) into the
keeper of his father''s dream. Marlon Brando played against
Puzo''s own conception of patriarch Vito Corleone, and time has
certainly proven the actor correct. The rest of the cast,
particularly James Caan, John Cazale, and Robert Duvall as the
rest of Vito''s male brood--all coping with how to take the
mantle of responsibility from their father--is seamless and
wonderful.', 'Available', 'PG-13', 'Widescreen', 5, 'Paramount',
'176 Minutes', '1');
INSERT INTO tbl_movies VALUES(10, 'Alien', 1979, 'Science
Fiction', 'Scott', 'alienth.jpg', 'alien.jpg', 'The terror begins when
the crew of a spaceship investigates a transmission from a
desolate planet, and discovers a life form that is perfectly
evolved to annihilate mankind. One by one, each crew member
is slain until only Ripley is left, leading to an explosive
conclusion that sets the stage for its stunning sequel, "Aliens."',
'On Order', 'PG-13', 'Fullscreen', 4, 'New Line', '134 Minutes',
'1');
INSERT INTO tbl_movies VALUES(11, 'Aliens', 1986, 'Science
Fiction', 'Cameron', 'aliensth.jpg', 'aliens.jpg', 'In this action-
packed sequel to Alien, Sigourney Weaver returns as Ripley, the
only survivor from mankind''s first encounter with the
monstrous Alien. Her account of the Alien and the fate of her
crew are received with skepticism - until the mysterious
disappearance of colonists on LV-426 leads her to join a team
of high-tech colonial marines sent in to investigate. Personally
supervised by director James Cameron, this special edition
includes scenes eliminated prior to the film''s 1986 release
which broaden the narrative scope and enrich the emotional
impact of the film.', 'Available', 'PG-13', 'Widescreen', 4,
'Warner Brothers', '136 Minutes', '1');
INSERT INTO tbl_movies VALUES(12, 'The Texas Chainsaw
Massacre', 1974, 'Horror', 'Hooper', 'chainsawth.jpg',
'chainsaw.jpg', 'It has been called grisly, sick, and perverse as
well as raw, unshakeable, and the movie that redefined horror.
It was attacked by churches, banned by governments, and
acclaimed by only the bravest of critics. It stunned audiences
worldwide and set a new standard in movie terror forever. In
1974, writer-producer-director Tobe Hooper unleashed this
dark, visionary tale about a group of five young friends who
face a nightmare of torment at the hands of a depraved Texas
clan. Today it remains unequaled as a landmark of outlaw
filmmaking and unparalleled in its impact as perhaps the most
frightening motion picture ever made.', 'Available', 'R',
'Fullscreen', 4, 'United Artists', '94 Minutes', '1');
INSERT INTO tbl_movies VALUES(13, 'Audition', 1999,
'Horror', 'Miike', 'auditionth.jpg', 'audition.jpg', 'If you want the
full sledgehammer-to-the-stomach effect of Audition, stop
reading this review now. Just watch it and take the
consequences. At first glance, Takashi Miike''s jack in the box
of a movie works like a romantic comedy: amiable widower
Shigeharu Aoyama (Ryo Ishibashi) decides it''s time to find a
new wife, and a friend suggests holding a fake audition to find
the right girl. It soon becomes clear that there is something
wrong with Aoyama''s choice. This is no ordinary Fatal
Attraction-style thriller, however; Audition slowly and carefully
builds into a wrenching exploration of both deep male fears and
the stereotype of the cute, submissive Japanese woman.
Audition is by no means an easy movie to watch--even hardcore
horror fans may have trouble--but it will stay with you for a
long, long time.', 'Available', 'NC-17', 'Fullscreen', 2, 'Toho',
'94 Minutes', '0');
INSERT INTO tbl_movies VALUES(14, 'Ratatouille', 2007,
'Comedy', 'Bird', 'ratatouilleth.jpg', 'ratatouille.jpg', 'One key
point: if you can get over the natural gag reflex of seeing
hundreds of rodents swarming over a restaurant kitchen, you
will be free to enjoy the glory of Ratatouille, a delectable Pixar
hit. Our hero is Remy, a French rat (voiced by Patton Oswalt)
with a cultivated palate, who rises from his humble beginnings
to become head chef at a Paris restaurant. How this happens is
the stuff of Pixar magic, that ineffable blend of headlong
comedy, seamless technology, and wonder (in the latter
department, this movie''s views of nighttime Paris are on a par
with French cinema at its most lyrical). Director Brad Bird (The
Incredibles) doesn''t quite keep all his spinning plates in the air,
but the gags are great and the animation amazingly expressive--
Remy''s shrugs and nods are nimbler than many flesh-and-blood
actors can manage. Refreshingly, the movie''s characters aren''t
celebrity-reliant, with the most recognizable voice coming from
Peter O''Toole''s snide food critic.', 'Rented', 'G', 'Widescreen',
5, 'Pixar', '124 Minutes', '1');
INSERT INTO tbl_movies VALUES(15, 'The Incredibles', 2004,
'Comedy', 'Bird', 'incrediblesth.jpg', 'incredibles.jpg', 'After
creating the last great traditionally animated film of the 20th
century, The Iron Giant, filmmaker Brad Bird joined top-drawer
studio Pixar to create this exciting, completely entertaining
computer-animated film. Bird gives us a family of "supers," a
brood of five with special powers desperately trying to fit in
with the 9-to-5 suburban lifestyle. Of course, in a more innocent
world, Bob and Helen Parr were superheroes, Mr. Incredible and
Elastigirl. But blasted lawsuits and public disapproval forced
them and other supers to go incognito, making it even tougher
for their school-age kids, the shy Violet and the aptly named
Dash. When a stranger named Mirage (voiced by Elizabeth
Pena) secretly recruits Bob for a potential mission, the old glory
days spin in his head, even if his body is a bit too plump for his
old super suit.', 'Available', 'G', 'Widescreen', 5, 'Pixar', '122
Minutes', '1');
INSERT INTO tbl_movies VALUES(16, 'Night of the Living
Dead', 1968, 'Horror', 'Romero', 'deadth.jpg', 'dead.jpg', 'Night
of the Living Dead is a seminal 1968 black-and-white
independent horror film directed by George A. Romero. Early
drafts of the script were titled Monster Flick, but it was known
as Night of Anubis and Night of the Flesh Eaters during
production. The film stars Duane Jones as Ben and Judith
O''Dea as Barbra. The plot revolves around the mysterious
reanimation of the dead and the efforts of Ben, Barbra and five
others to survive the night while trapped in a rural Pennsylvania
farmhouse. Romero produced the film on the small budget of
$114,000, but after a decade of theatrical re-releases it had
grossed an estimated $12 million in the United States and $30
million internationally.', 'Available', 'PG-13', 'Fullscreen', 4,
'Warner Brothers', '85 Minutes', '1');
INSERT INTO tbl_movies VALUES(17, 'Suspiria', 1977,
'Horror', 'Argento', 'suspiriath.jpg', 'suspiria.jpg', 'Outside of
devoted cult audiences, many Americans have yet to discover
the extremely stylish, relentlessly terrifying Italian horror
genre, or the films of its talented virtuoso, Dario Argento.
Suspiria, part one of a still-uncompleted trilogy (the luminously
empty Inferno was the second), is considered his masterpiece by
Argento devotees but also doubles as a perfect starting point for
those unfamiliar with the director or his genre. The convoluted
plot follows an American dancer (Jessica Harper) from her
arrival at a European ballet school to her discovery that it''s
actually a witches coven; but, really, don''t worry about that too
much. Argento makes narrative subservient to technique,
preferring instead to assault the senses and nervous system with
mood, atmosphere, illusory gore, garish set production, a
menacing camera, and perhaps the creepiest score ever created
for a movie. It''s essentially a series of effectively unsettling set
pieces--a raging storm that Harper should have taken for an
omen, and a blind man attacked by his own dog are just two
examples--strung together on a skeleton structure. But once
you''ve seen it, you''ll never forget it.', 'Available', 'R',
'Widescreen', 4, 'Italifilm Studios', '134 Minutes', '0');
INSERT INTO tbl_movies VALUES(18, 'Casino', 1995,
'Drama', 'Scorsese', 'casinoth.jpg', 'casino.jpg', 'This Martin
Scorsese film depicts the Janus-like quality of Las Vegas--it has
a glittering, glamorous face, as well as a brutal, cruel one. Ace
Rothstein and Nicky Santoro, mobsters who move to Las Vegas
to make their mark, live and work in this paradoxical world.
Seen through their eyes, each as a foil to the other, the details
of mob involvement in the casinos of the 1970''s and ''80''s are
revealed. Ace is the smooth operator of the Tangiers casino,
while Nicky is his boyhood friend and tough strongman, robbing
and shaking down the locals. However, they each have a tragic
flaw--Ace falls in love with a hustler, Ginger, and Nicky falls
into an ever-deepening spiral of drugs and violence.', 'Rented',
'R', 'Widescreen', 3, 'Warner Brothers', '2 hours 10 Minutes',
'1');
INSERT INTO tbl_movies VALUES(24, 'A Clockwork Orange',
1971, 'Science Fiction', '', 'thclockwork.jpg', 'clockwork.jpg',
'classic sf movie', 'Available', 'R', 'Widescreen', 5, 'Warners',
'2:22', '1');
all_codes_i_learnt_before/cms_part1/dvdsite.css
body {
font-family:Arial, Helvetica, sans-serif;
font-size: 12px;
}
tr {
padding-right:3px;
margin:12px;
border:0px;
}
input, select,textarea {
font-family:Arial, Helvetica, sans-serif;
font-size: 12px;
background-color:#CCCCCC;
}
#movieimage {
font-family:Arial, Helvetica, sans-serif;
font-size: 12px;
background-color:#CCCCCC;
}
#wrapper {
position:relative;
width:800px;
margin:0px auto;
}
#header {
font-size:18px;
width:300px;
height:50px;
float:left;
}
#search {
width:250px;
float:left;
}
#sort {
width:250px;
float:left;
}
#maincontent {
width:800px;
clear:left;
}
#footer {
font-size:10px;
text-align:center;
width:800px;
height:15px;
margin-top:10px;
}
#image {
position:absolute;
left:10px;
top:10px;
width:200px;
height:300px;
}
#title {
position:absolute;
left:250px;
top:10px;
font-size:18px;
width:200px;
height:20px;
}
#info {
position:absolute;
left:250px;
top:50px;
font-size:12px;
width:400px;
height:400px;
}
.dvdtitle {
font-size:14px;
font-weight:bold;
color:#333333;
}
.hilite {
font-style:italic;
}
all_codes_i_learnt_before/cms_part1/images/.DS_Store
all_codes_i_learnt_before/cms_part1/images/alien.jpg
all_codes_i_learnt_before/cms_part1/images/aliens.jpg
all_codes_i_learnt_before/cms_part1/images/audition.jpg
all_codes_i_learnt_before/cms_part1/images/bourne3.jpg
all_codes_i_learnt_before/cms_part1/images/casino.jpg
all_codes_i_learnt_before/cms_part1/images/chainsaw.jpg
all_codes_i_learnt_before/cms_part1/images/christmas.jpg
all_codes_i_learnt_before/cms_part1/images/clockwork.jpg
all_codes_i_learnt_before/cms_part1/images/dead.jpg
all_codes_i_learnt_before/cms_part1/images/dvdsite.css
body {
font-family:Arial, Helvetica, sans-serif;
font-size: 12px;
}
tr {
padding-right:3px;
margin:12px;
border:0px;
}
input, select,textarea {
font-family:Arial, Helvetica, sans-serif;
font-size: 12px;
background-color:#CCCCCC;
}
#movieimage {
font-family:Arial, Helvetica, sans-serif;
font-size: 12px;
background-color:#CCCCCC;
}
#wrapper {
position:relative;
width:800px;
margin:0px auto;
}
#header {
font-size:18px;
width:300px;
height:50px;
float:left;
}
#search {
width:250px;
float:left;
}
#sort {
width:250px;
float:left;
}
#maincontent {
width:800px;
clear:left;
}
#footer {
font-size:10px;
text-align:center;
width:800px;
height:15px;
margin-top:10px;
}
#image {
position:absolute;
left:10px;
top:10px;
width:200px;
height:300px;
}
#title {
position:absolute;
left:250px;
top:10px;
font-size:18px;
width:200px;
height:20px;
}
#info {
position:absolute;
left:250px;
top:50px;
font-size:12px;
width:400px;
height:400px;
}
.dvdtitle {
font-size:14px;
font-weight:bold;
color:#333333;
}
.hilite {
font-style:italic;
}
all_codes_i_learnt_before/cms_part1/images/eraserhead.jpg
all_codes_i_learnt_before/cms_part1/images/female.jpg
all_codes_i_learnt_before/cms_part1/images/godfather.jpg
all_codes_i_learnt_before/cms_part1/images/highlow.jpg
all_codes_i_learnt_before/cms_part1/images/incredibles.jpg
all_codes_i_learnt_before/cms_part1/images/labyrinth.jpg
all_codes_i_learnt_before/cms_part1/images/mulholland.jpg
all_codes_i_learnt_before/cms_part1/images/planetearth.jpg
all_codes_i_learnt_before/cms_part1/images/potter5.jpg
all_codes_i_learnt_before/cms_part1/images/pulp.jpg
all_codes_i_learnt_before/cms_part1/images/ratatouille.jpg
all_codes_i_learnt_before/cms_part1/images/reservoir.jpg
all_codes_i_learnt_before/cms_part1/images/samurai.jpg
all_codes_i_learnt_before/cms_part1/images/strangelove.jpg
all_codes_i_learnt_before/cms_part1/images/suspiria.jpg
all_codes_i_learnt_before/cms_part1/images/throne.jpg
all_codes_i_learnt_before/cms_part1/images/thumbs/.DS_Store
all_codes_i_learnt_before/cms_part1/images/thumbs/aliensth.jp
g
all_codes_i_learnt_before/cms_part1/images/thumbs/alienth.jpg
all_codes_i_learnt_before/cms_part1/images/thumbs/auditionth.
jpg
all_codes_i_learnt_before/cms_part1/images/thumbs/bourneth.j
pg
all_codes_i_learnt_before/cms_part1/images/thumbs/casinoth.jp
g
all_codes_i_learnt_before/cms_part1/images/thumbs/chainsawth
.jpg
all_codes_i_learnt_before/cms_part1/images/thumbs/christmast
h.jpg
all_codes_i_learnt_before/cms_part1/images/thumbs/deadth.jpg
all_codes_i_learnt_before/cms_part1/images/thumbs/eraserheadt
h.jpg
all_codes_i_learnt_before/cms_part1/images/thumbs/femaleth.jp
g
all_codes_i_learnt_before/cms_part1/images/thumbs/godfathert
h.jpg
all_codes_i_learnt_before/cms_part1/images/thumbs/highlowth.
jpg
all_codes_i_learnt_before/cms_part1/images/thumbs/incredibles
th.jpg
all_codes_i_learnt_before/cms_part1/images/thumbs/labyrinthth
.jpg
all_codes_i_learnt_before/cms_part1/images/thumbs/mulholland
th.jpg
all_codes_i_learnt_before/cms_part1/images/thumbs/planetearth
th.jpg
all_codes_i_learnt_before/cms_part1/images/thumbs/potterth.jp
g
all_codes_i_learnt_before/cms_part1/images/thumbs/pulpth.jpg
all_codes_i_learnt_before/cms_part1/images/thumbs/ratatouillet
h.jpg
all_codes_i_learnt_before/cms_part1/images/thumbs/reservoirth
.jpg
all_codes_i_learnt_before/cms_part1/images/thumbs/samuraith.j
pg
all_codes_i_learnt_before/cms_part1/images/thumbs/strangelov
eth.jpg
all_codes_i_learnt_before/cms_part1/images/thumbs/suspiriath.j
pg
all_codes_i_learnt_before/cms_part1/images/thumbs/thclockwor
k.jpg
all_codes_i_learnt_before/cms_part1/images/thumbs/throneth.jp
g
all_codes_i_learnt_before/cms_part1/images/thumbs/velvetth.jp
g
all_codes_i_learnt_before/cms_part1/images/thumbs/yumath.jpg
all_codes_i_learnt_before/cms_part1/images/velvet.jpg
all_codes_i_learnt_before/cms_part1/images/yuma.jpg
all_codes_i_learnt_before/cms_part1/main_name.php
DVD Movie List
Show By Genre:
<choose genre>
Action
Comedy
Drama
Horror
Science Fiction
All Movies
Search:
".$row['movie_title']."".$row['movie_genre']."editdelete
" ;
//need to be finished. put edit and delete after more
}
?>
copyright 2009 all rights reserved
all_codes_i_learnt_before/cms_part1/moviedetail.php
Search:
"; ?>
back to list
all_codes_i_learnt_before/cms_part1/movielist.php
DVD Movie List
Show By Genre:
<choose genre>
Action
Comedy
Drama
Horror
Science Fiction
All Movies
Search:
".$row['movie_title']."".$row['movie_genre']."more...
";
}
?>
copyright 2009 all rights reserved
all_codes_i_learnt_before/cms_part2_done/addmovie.php
<?php
require_once("connect.php");
$title = $_POST['movie_title'];
$year = $_POST['movie_year'];
$genre = $_POST['movie_genre'];
$director = $_POST['movie_director'];
$image = $_POST['movie_image'];
$info = $_POST['movie_info'];
$status = $_POST['movie_status'];
$rating = $_POST['movie_rating'];
$format = $_POST['movie_format'];
$review = $_POST['movie_review'];
$studio = $_POST['movie_studio'];
$runtime = $_POST['movie_runtime'];
$region = $_POST['movie_region'];
$thumb = "th_".$image;
$qstring = "INSERT INTO tbl_movies
VALUES(NULL,'".$title."','".$year."','".$genre."','".$director."',
'".$thumb."','".$image."','".$info."','".$status."','".$rating."','".$f
ormat."','".$review."','".$studio."','".$runtime."','".$region."')";
$result = mysql_query($qstring);
header("Location: admin_add_movie.php");
?>
all_codes_i_learnt_before/cms_part2_done/admin_add_movie.p
hp
Add a MovieTitle:Year:Genre:Action
Comedy
Drama
Horror
Science Fiction
Director:Image:Info:Status:Available
Rented
Not in Stock
Rating:Format:
Widescreen
FullscreenReview:
(out of 5)Studio:Runtime:
(hh:mm)Region:admin home
all_codes_i_learnt_before/cms_part2_done/admin_delete_movie
.php
<?php
require_once("connect.php");
$chuckthis = $_GET['id'];
$qstring = "DELETE FROM tbl_movies WHERE
movie_id=".$chuckthis;
$del = mysql_query($qstring);
header("Location: admin_main.php");
?>
all_codes_i_learnt_before/cms_part2_done/admin_edit_movie.p
hp
Edit a
MovieTitle:Year:Genre:Director:Image:Info:Status:Rating:Form
at:Review:
(out of 5)Studio:Runtime:
(hh:mm)Region:
all_codes_i_learnt_before/cms_part2_done/admin_login.html
Content Management
username:
password:
all_codes_i_learnt_before/cms_part2_done/admin_login.php
<?php
require_once('connect.php');
$username = $_POST['username'];
$password = $_POST['password'];
$querystring = "SELECT * FROM tbl_users WHERE
user_username='".$username."' AND
user_password='".$password."'";
$myquery = mysql_query($querystring);
$numrows = mysql_num_rows($myquery);
if($numrows==0) {
header("Location: admin_login.html");
}else{
session_start();
$row = mysql_fetch_array($myquery);
$_SESSION['id'] = $row['user_id'];
header("Location: admin_main.php");
}
?>
all_codes_i_learnt_before/cms_part2_done/admin_main.php
DVD Movie List
Show By Genre:
<choose genre>
Action
Comedy
Drama
Horror
Science Fiction
All Movies
Search:
".$row['movie_title']."".$row['movie_genre']."edit...delete...
";
}
?>
add a movie
copyright 2009 all rights reserved
all_codes_i_learnt_before/cms_part2_done/connect.php
<?php
mysql_connect("localhost:8888","root","root");
mysql_select_db("db_dvds");
?>
all_codes_i_learnt_before/cms_part2_done/db_movies.sql
-- phpMyAdmin SQL Dump
-- version 3.2.4
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Feb 15, 2010 at 04:00 PM
-- Server version: 5.1.37
-- PHP Version: 5.2.11
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
/*!40101 SET
@[email protected]@CHARACTER_SET_CLIENT */;
/*!40101 SET
@[email protected]@CHARACTER_SET_RESULTS */;
/*!40101 SET
@[email protected]@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Database: 'db_dvdsite'
--
-- --------------------------------------------------------
--
-- Table structure for table 'tbl_movies'
--
CREATE TABLE tbl_movies (
movie_id smallint(4) unsigned NOT NULL
AUTO_INCREMENT,
movie_title varchar(150) NOT NULL,
movie_year year(4) NOT NULL,
movie_genre varchar(50) NOT NULL,
movie_director varchar(100) NOT NULL,
movie_thumb varchar(100) NOT NULL,
movie_image varchar(100) NOT NULL,
movie_info text NOT NULL,
movie_status varchar(20) NOT NULL,
movie_rating varchar(6) NOT NULL,
movie_format varchar(20) NOT NULL,
movie_review int(4) DEFAULT NULL,
movie_studio varchar(120) NOT NULL,
movie_runtime varchar(25) DEFAULT NULL,
movie_region varchar(2) DEFAULT NULL,
PRIMARY KEY (movie_id)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table 'tbl_movies'
--
INSERT INTO tbl_movies VALUES(1, 'Dr. Strangelove', 1960,
'Comedy', 'Kubrick', 'strangeloveth.jpg', 'strangelove.jpg',
'Arguably the greatest black comedy ever made, Stanley
Kubrick''s cold-war classic is the ultimate satire of the nuclear
age. Dr. Strangelove is a perfect spoof of political and military
insanity, beginning when General Jack D. Ripper (Sterling
Hayden), a maniacal warrior obsessed with "the purity of
precious bodily fluids," mounts his singular campaign against
Communism by ordering a squadron of B-52 bombers to attack
the Soviet Union. The Soviets counter the threat with a so-
called "Doomsday Device," and the world hangs in the balance
while the U.S. president (Peter Sellers) engages in hilarious
hot-line negotiations with his Soviet counterpart.', 'Rented',
'PG-13', 'Widescreen', 4, 'Warner Brothers', '172 Minutes', '1');
INSERT INTO tbl_movies VALUES(2, 'Blue Velvet', 1986,
'Drama', 'Lynch', 'velvetth.jpg', 'velvet.jpg', 'A man returns to
his home town after being away and discovers a severed human
ear in a field. Not satisfied with the police''s pace, he and the
police detective''s daughter carry out their own investigation.
The object of his investigation turns out to be a beautiful and
mysterious woman involved with a violent and perversely evil
man.', 'Available', 'R', 'Widescreen', 3, 'New Line', '154
Minutes', '0');
INSERT INTO tbl_movies VALUES(3, 'Mulholland Drive',
2001, 'Drama', 'Lynch', 'mulhollandth.jpg', 'mulholland.jpg',
'Pandora couldn''t resist opening the forbidden box containing
all the delusions of mankind, and let''s just say David Lynch, in
Mulholland Drive, indulges a similar impulse. Employing a
familiar film noir atmosphere to unravel, as he coyly puts it, "a
love story in the city of dreams," Lynch establishes a
foreboding but playful narrative in the film''s first half before
subsuming all of Los Angeles and its corrupt ambitions into his
voyeuristic universe of desire. Identities exchange, amnesia
proliferates, and nightmare visions are induced, but not before
we''ve become enthralled by the film''s two main characters: the
dazed and sullen femme fatale, Rita (Laura Elena Harring), and
the pert blonde just-arrived from Ontario (played exquisitely by
Naomi Watts) who decides to help Rita regain her memory.
Triggered by a rapturous Spanish-language version of Roy
Orbison''s "Crying," Lynch''s best film since Blue Velvet splits
glowingly into two equally compelling parts.', 'Rented', 'R',
'Fullscreen', 4, 'New Line', '173 Minutes', '1');
INSERT INTO tbl_movies VALUES(4, 'Eraserhead', 1977,
'Science Fiction', 'Lynch', 'eraserheadth.jpg', 'eraserhead.jpg', 'Is
it a nightmare or an actual view of a post-apocalyptic world?
Set in an industrial town in which giant machines are constantly
working, spewing smoke, and making noise that is inescapable,
Henry Spencer lives in a building that, like all the others,
appears to be abandoned. The lights flicker on and off, he has
bowls of water in his dresser drawers, and for his only diversion
he watches and listens to the Lady in the Radiator sing about
finding happiness in heaven. Henry has a girlfriend, Mary X,
who has frequent spastic fits. Mary gives birth to Henry''s child,
a frightening looking mutant, which leads to the injection of all
sorts of sexual imagery into the depressive and chaotic mix.',
'Available', 'PG-13', 'Widescreen', 3, 'Paramount', '98 Minutes',
'1');
INSERT INTO tbl_movies VALUES(5, 'Seven Samurai', 1954,
'Action', 'Kurosawa', 'samuraith.jpg', 'samurai.jpg', 'Hailed as
the greatest film in the history of Japanese cinema, Seven
Samurai is director Akira Kurosawa''s undisputed masterpiece.
Arguably the greatest of all jidai-gecki (or historical swordplay
films), Kurosawa''s classic 1954 action drama has never been
surpassed in terms of sheer power of emotion, kinetic energy,
and dynamic character development. The story is set during the
civil unrest of 16th-century Japan, as the cowering residents of
a small farming village are seeking protection against seasonal
attacks by a band of marauding bandits. Offering mere handfuls
of rice as payment, they hire seven unemployed "ronin"
(masterless samurai), including a boastful swordsman (Toshiro
Mifune) who is actually a peasant farmer''s son, desperately
seeking glory, acceptance, and revenge against those who
destroyed his family. Led by the calmly strategic Kambei
(Takashi Shimura, star of Kurosawa''s previous classic, Ikiru),
the samurai form mutual bonds of honor and respect, but remain
distant from the villagers, knowing that their assignment may
prove to be fatal.', 'Available', 'PG-13', 'Widescreen', 5, 'Toho',
'183 Minutes', '0');
INSERT INTO tbl_movies VALUES(6, 'Throne of Blood', 1961,
'Drama', 'Kurosawa', 'throneth.jpg', 'throne.jpg', 'One of the
most celebrated screen adaptations of Shakespeare into film,
Akira Kurosawaís Throne of Blood re-imagines Macbeth in
feudal Japan. Starring Kurosawaís longtime collaborator
Toshiro Mifune and the legendary Isuzu Yamada as his ruthless
wife, the film tells of a valiant warriorís savage rise to power
and his ignominious fall. With Throne of Blood, Kurosawa
fuses one of Shakespeareís greatest tragedies with the formal
elements of Japanese Noh theater to make a Macbeth that is all
his ownóa classic tale of ambition and duplicity set against a
ghostly landscape of fog and inescapable doom.', 'Rented', 'PG-
13', 'Widescreen', 5, 'Toho', '212 Minutes', '0');
INSERT INTO tbl_movies VALUES(7, 'High and Low', 1963,
'Drama', 'Kurosawa', 'highlowth.jpg', 'highlow.jpg', 'Although
best known for his samurai classics, Japanese master filmmaker
Akira Kurosawa proved himself equally adept at contemporary
dramas and thrillers, and 1962''s High and Low offers a
powerful showcase for Kurosawa''s versatile skill. The great
Toshiro Mifune stars as a wealthy industrialist who has just
raised a large sum of money to execute his planned takeover of
a successful shoe manufacturer. Fate intervenes when he
receives a phone call informing him that his son has been
kidnapped, and by unfortunate coincidence the ransom demand
is nearly equivalent to the amount Mifune has raised for his
corporate coup. A philosophical dilemma emerges when it is
revealed that the executive''s son is safe, and that it is actually
his chauffeur''s son who has been taken. What follows is both a
tense detective thriller, as the police attempt to track down the
kidnapper, and a compelling illustration of class division in
Japan--the "high and low" of the title.', 'Available', 'PG-13',
'Fullscreen', 4, 'Toho', '132 Minutes', '0');
INSERT INTO tbl_movies VALUES(8, 'Female Trouble', 1974,
'Comedy', 'Waters', 'femaleth.jpg', 'female.jpg', 'John Waters
expands the definition of female trouble in this mutant tribute to
good-girl-gone-bad drive-in melodramas. The girl is, of course,
cross-dressing cult icon Divine, Waters''s plus-sized muse.
Divine is at her most gleefully outrageous as teenage brat Dawn
Davenport, who runs away from home and into a life of wanton
hedonism all because she didn''t get cha-cha heels for
Christmas. Almost immediately she''s molested by a sleazy
motorcycle thug (also played by Divine--is this Waters''s idea of
"love thyself"?), but she doesn''t let motherhood interfere with
her plans of stardom and turns herself into an unlikely fashion
statement in an apocalyptic fashion show. Waters''s fourth
feature, a follow-up to the midnight movie hit Pink Flamingos,
is just as cinematically primitive and even more gleefully
vulgar, right down to the electric climax of Dawn''s road to
everlasting fame.', 'Rented', 'R', 'Fullscreen', 3, 'United Artists',
'122 Minutes', '1');
INSERT INTO tbl_movies VALUES(9, 'The Godfather', 1972,
'Drama', 'Coppola', 'godfatherth.jpg', 'godfather.jpg', 'Generally
acknowledged as a bona fide classic, this Francis Ford Coppola
film is one of those rare experiences that feels perfectly right
from beginning to end--almost as if everyone involved had been
born to participate in it. Based on Mario Puzo''s bestselling
novel about a Mafia dynasty, Coppola''s Godfather extracted
and enhanced the most universal themes of immigrant
experience in America: the plotting-out of hopes and dreams for
one''s successors, the raising of children to carry on the good
work, etc. In the midst of generational strife during the Vietnam
years, the film somehow struck a chord with a nation fascinated
by the metamorphosis of a rebellious son (Al Pacino) into the
keeper of his father''s dream. Marlon Brando played against
Puzo''s own conception of patriarch Vito Corleone, and time has
certainly proven the actor correct. The rest of the cast,
particularly James Caan, John Cazale, and Robert Duvall as the
rest of Vito''s male brood--all coping with how to take the
mantle of responsibility from their father--is seamless and
wonderful.', 'Available', 'PG-13', 'Widescreen', 5, 'Paramount',
'176 Minutes', '1');
INSERT INTO tbl_movies VALUES(10, 'Alien', 1979, 'Science
Fiction', 'Scott', 'alienth.jpg', 'alien.jpg', 'The terror begins when
the crew of a spaceship investigates a transmission from a
desolate planet, and discovers a life form that is perfectly
evolved to annihilate mankind. One by one, each crew member
is slain until only Ripley is left, leading to an explosive
conclusion that sets the stage for its stunning sequel, "Aliens."',
'On Order', 'PG-13', 'Fullscreen', 4, 'New Line', '134 Minutes',
'1');
INSERT INTO tbl_movies VALUES(11, 'Aliens', 1986, 'Science
Fiction', 'Cameron', 'aliensth.jpg', 'aliens.jpg', 'In this action-
packed sequel to Alien, Sigourney Weaver returns as Ripley, the
only survivor from mankind''s first encounter with the
monstrous Alien. Her account of the Alien and the fate of her
crew are received with skepticism - until the mysterious
disappearance of colonists on LV-426 leads her to join a team
of high-tech colonial marines sent in to investigate. Personally
supervised by director James Cameron, this special edition
includes scenes eliminated prior to the film''s 1986 release
which broaden the narrative scope and enrich the emotional
impact of the film.', 'Available', 'PG-13', 'Widescreen', 4,
'Warner Brothers', '136 Minutes', '1');
INSERT INTO tbl_movies VALUES(12, 'The Texas Chainsaw
Massacre', 1974, 'Horror', 'Hooper', 'chainsawth.jpg',
'chainsaw.jpg', 'It has been called grisly, sick, and perverse as
well as raw, unshakeable, and the movie that redefined horror.
It was attacked by churches, banned by governments, and
acclaimed by only the bravest of critics. It stunned audiences
worldwide and set a new standard in movie terror forever. In
1974, writer-producer-director Tobe Hooper unleashed this
dark, visionary tale about a group of five young friends who
face a nightmare of torment at the hands of a depraved Texas
clan. Today it remains unequaled as a landmark of outlaw
filmmaking and unparalleled in its impact as perhaps the most
frightening motion picture ever made.', 'Available', 'R',
'Fullscreen', 4, 'United Artists', '94 Minutes', '1');
INSERT INTO tbl_movies VALUES(13, 'Audition', 1999,
'Horror', 'Miike', 'auditionth.jpg', 'audition.jpg', 'If you want the
full sledgehammer-to-the-stomach effect of Audition, stop
reading this review now. Just watch it and take the
consequences. At first glance, Takashi Miike''s jack in the box
of a movie works like a romantic comedy: amiable widower
Shigeharu Aoyama (Ryo Ishibashi) decides it''s time to find a
new wife, and a friend suggests holding a fake audition to find
the right girl. It soon becomes clear that there is something
wrong with Aoyama''s choice. This is no ordinary Fatal
Attraction-style thriller, however; Audition slowly and carefully
builds into a wrenching exploration of both deep male fears and
the stereotype of the cute, submissive Japanese woman.
Audition is by no means an easy movie to watch--even hardcore
horror fans may have trouble--but it will stay with you for a
long, long time.', 'Available', 'NC-17', 'Fullscreen', 2, 'Toho',
'94 Minutes', '0');
INSERT INTO tbl_movies VALUES(14, 'Ratatouille', 2007,
'Comedy', 'Bird', 'ratatouilleth.jpg', 'ratatouille.jpg', 'One key
point: if you can get over the natural gag reflex of seeing
hundreds of rodents swarming over a restaurant kitchen, you
will be free to enjoy the glory of Ratatouille, a delectable Pixar
hit. Our hero is Remy, a French rat (voiced by Patton Oswalt)
with a cultivated palate, who rises from his humble beginnings
to become head chef at a Paris restaurant. How this happens is
the stuff of Pixar magic, that ineffable blend of headlong
comedy, seamless technology, and wonder (in the latter
department, this movie''s views of nighttime Paris are on a par
with French cinema at its most lyrical). Director Brad Bird (The
Incredibles) doesn''t quite keep all his spinning plates in the air,
but the gags are great and the animation amazingly expressive--
Remy''s shrugs and nods are nimbler than many flesh-and-blood
actors can manage. Refreshingly, the movie''s characters aren''t
celebrity-reliant, with the most recognizable voice coming from
Peter O''Toole''s snide food critic.', 'Rented', 'G', 'Widescreen',
5, 'Pixar', '124 Minutes', '1');
INSERT INTO tbl_movies VALUES(15, 'The Incredibles', 2004,
'Comedy', 'Bird', 'incrediblesth.jpg', 'incredibles.jpg', 'After
creating the last great traditionally animated film of the 20th
century, The Iron Giant, filmmaker Brad Bird joined top-drawer
studio Pixar to create this exciting, completely entertaining
computer-animated film. Bird gives us a family of "supers," a
brood of five with special powers desperately trying to fit in
with the 9-to-5 suburban lifestyle. Of course, in a more innocent
world, Bob and Helen Parr were superheroes, Mr. Incredible and
Elastigirl. But blasted lawsuits and public disapproval forced
them and other supers to go incognito, making it even tougher
for their school-age kids, the shy Violet and the aptly named
Dash. When a stranger named Mirage (voiced by Elizabeth
Pena) secretly recruits Bob for a potential mission, the old glory
days spin in his head, even if his body is a bit too plump for his
old super suit.', 'Available', 'G', 'Widescreen', 5, 'Pixar', '122
Minutes', '1');
INSERT INTO tbl_movies VALUES(16, 'Night of the Living
Dead', 1968, 'Horror', 'Romero', 'deadth.jpg', 'dead.jpg', 'Night
of the Living Dead is a seminal 1968 black-and-white
independent horror film directed by George A. Romero. Early
drafts of the script were titled Monster Flick, but it was known
as Night of Anubis and Night of the Flesh Eaters during
production. The film stars Duane Jones as Ben and Judith
O''Dea as Barbra. The plot revolves around the mysterious
reanimation of the dead and the efforts of Ben, Barbra and five
others to survive the night while trapped in a rural Pennsylvania
farmhouse. Romero produced the film on the small budget of
$114,000, but after a decade of theatrical re-releases it had
grossed an estimated $12 million in the United States and $30
million internationally.', 'Available', 'PG-13', 'Fullscreen', 4,
'Warner Brothers', '85 Minutes', '1');
INSERT INTO tbl_movies VALUES(17, 'Suspiria', 1977,
'Horror', 'Argento', 'suspiriath.jpg', 'suspiria.jpg', 'Outside of
devoted cult audiences, many Americans have yet to discover
the extremely stylish, relentlessly terrifying Italian horror
genre, or the films of its talented virtuoso, Dario Argento.
Suspiria, part one of a still-uncompleted trilogy (the luminously
empty Inferno was the second), is considered his masterpiece by
Argento devotees but also doubles as a perfect starting point for
those unfamiliar with the director or his genre. The convoluted
plot follows an American dancer (Jessica Harper) from her
arrival at a European ballet school to her discovery that it''s
actually a witches coven; but, really, don''t worry about that too
much. Argento makes narrative subservient to technique,
preferring instead to assault the senses and nervous system with
mood, atmosphere, illusory gore, garish set production, a
menacing camera, and perhaps the creepiest score ever created
for a movie. It''s essentially a series of effectively unsettling set
pieces--a raging storm that Harper should have taken for an
omen, and a blind man attacked by his own dog are just two
examples--strung together on a skeleton structure. But once
you''ve seen it, you''ll never forget it.', 'Available', 'R',
'Widescreen', 4, 'Italifilm Studios', '134 Minutes', '0');
INSERT INTO tbl_movies VALUES(18, 'Casino', 1995,
'Drama', 'Scorsese', 'casinoth.jpg', 'casino.jpg', 'This Martin
Scorsese film depicts the Janus-like quality of Las Vegas--it has
a glittering, glamorous face, as well as a brutal, cruel one. Ace
Rothstein and Nicky Santoro, mobsters who move to Las Vegas
to make their mark, live and work in this paradoxical world.
Seen through their eyes, each as a foil to the other, the details
of mob involvement in the casinos of the 1970''s and ''80''s are
revealed. Ace is the smooth operator of the Tangiers casino,
while Nicky is his boyhood friend and tough strongman, robbing
and shaking down the locals. However, they each have a tragic
flaw--Ace falls in love with a hustler, Ginger, and Nicky falls
into an ever-deepening spiral of drugs and violence.', 'Rented',
'R', 'Widescreen', 3, 'Warner Brothers', '2 hours 10 Minutes',
'1');
INSERT INTO tbl_movies VALUES(24, 'A Clockwork Orange',
1971, 'Science Fiction', '', 'thclockwork.jpg', 'clockwork.jpg',
'classic sf movie', 'Available', 'R', 'Widescreen', 5, 'Warners',
'2:22', '1');
all_codes_i_learnt_before/cms_part2_done/dvdsite.css
body {
font-family:Arial, Helvetica, sans-serif;
font-size: 12px;
}
tr {
padding-right:3px;
margin:12px;
border:0px;
}
input, select,textarea {
font-family:Arial, Helvetica, sans-serif;
font-size: 12px;
background-color:#CCCCCC;
}
#movieimage {
font-family:Arial, Helvetica, sans-serif;
font-size: 12px;
background-color:#CCCCCC;
}
#wrapper {
position:relative;
width:800px;
margin:0px auto;
}
#header {
font-size:18px;
width:300px;
height:50px;
float:left;
}
#search {
width:250px;
float:left;
}
#sort {
width:250px;
float:left;
}
#maincontent {
width:800px;
clear:left;
}
#footer {
font-size:10px;
text-align:center;
width:800px;
height:15px;
margin-top:10px;
}
#image {
position:absolute;
left:10px;
top:10px;
width:200px;
height:300px;
}
#title {
position:absolute;
left:250px;
top:10px;
font-size:18px;
width:200px;
height:20px;
}
#info {
position:absolute;
left:250px;
top:50px;
font-size:12px;
width:400px;
height:400px;
}
.dvdtitle {
font-size:14px;
font-weight:bold;
color:#333333;
}
.hilite {
font-style:italic;
}
all_codes_i_learnt_before/cms_part2_done/editmovie.php
<?php
require_once("connect.php");
$editthis = $_GET['id'];
//gather form fields
$title = $_POST['movie_title'];
$year = $_POST['movie_year'];
$genre = $_POST['movie_genre'];
$director = $_POST['movie_director'];
$image = $_POST['movie_image'];
$info = $_POST['movie_info'];
$status = $_POST['movie_status'];
$rating = $_POST['movie_rating'];
$format = $_POST['movie_format'];
$review = $_POST['movie_review'];
$studio = $_POST['movie_studio'];
$runtime = $_POST['movie_runtime'];
$region = $_POST['movie_region'];
$qstring = "UPDATE tbl_movies SET
movie_title='".$title."',movie_year='".$year."',movie_genre='".$
genre."',movie_director='".$director."',movie_image='".$image.
"',movie_info='".$info."',movie_status='".$status."',movie_ratin
g='".$rating."',movie_format='".$format."',movie_review='".$re
view."',movie_studio='".$studio."',movie_runtime='".$runtime."'
,movie_region='".$region."' WHERE movie_id=".$editthis;
$edit = mysql_query($qstring);
header("Location: admin_main.php");
?>
all_codes_i_learnt_before/cms_part2_done/images/.DS_Store
all_codes_i_learnt_before/cms_part2_done/images/alien.jpg
all_codes_i_learnt_before/cms_part2_done/images/aliens.jpg
all_codes_i_learnt_before/cms_part2_done/images/audition.jpg
all_codes_i_learnt_before/cms_part2_done/images/bourne3.jpg
all_codes_i_learnt_before/cms_part2_done/images/casino.jpg
all_codes_i_learnt_before/cms_part2_done/images/chainsaw.jpg
all_codes_i_learnt_before/cms_part2_done/images/christmas.jp
g
all_codes_i_learnt_before/cms_part2_done/images/clockwork.jp
g
all_codes_i_learnt_before/cms_part2_done/images/dead.jpg
all_codes_i_learnt_before/cms_part2_done/images/dvdsite.css
body {
font-family:Arial, Helvetica, sans-serif;
font-size: 12px;
}
tr {
padding-right:3px;
margin:12px;
border:0px;
}
input, select,textarea {
font-family:Arial, Helvetica, sans-serif;
font-size: 12px;
background-color:#CCCCCC;
}
#movieimage {
font-family:Arial, Helvetica, sans-serif;
font-size: 12px;
background-color:#CCCCCC;
}
#wrapper {
position:relative;
width:800px;
margin:0px auto;
}
#header {
font-size:18px;
width:300px;
height:50px;
float:left;
}
#search {
width:250px;
float:left;
}
#sort {
width:250px;
float:left;
}
#maincontent {
width:800px;
clear:left;
}
#footer {
font-size:10px;
text-align:center;
width:800px;
height:15px;
margin-top:10px;
}
#image {
position:absolute;
left:10px;
top:10px;
width:200px;
height:300px;
}
#title {
position:absolute;
left:250px;
top:10px;
font-size:18px;
width:200px;
height:20px;
}
#info {
position:absolute;
left:250px;
top:50px;
font-size:12px;
width:400px;
height:400px;
}
.dvdtitle {
font-size:14px;
font-weight:bold;
color:#333333;
}
.hilite {
font-style:italic;
}
all_codes_i_learnt_before/cms_part2_done/images/eraserhead.jp
g
all_codes_i_learnt_before/cms_part2_done/images/female.jpg
all_codes_i_learnt_before/cms_part2_done/images/godfather.jpg
all_codes_i_learnt_before/cms_part2_done/images/highlow.jpg
all_codes_i_learnt_before/cms_part2_done/images/incredibles.j
pg
all_codes_i_learnt_before/cms_part2_done/images/labyrinth.jpg
all_codes_i_learnt_before/cms_part2_done/images/mulholland.j
pg
all_codes_i_learnt_before/cms_part2_done/images/planetearth.j
pg
all_codes_i_learnt_before/cms_part2_done/images/potter5.jpg
all_codes_i_learnt_before/cms_part2_done/images/pulp.jpg
all_codes_i_learnt_before/cms_part2_done/images/ratatouille.jp
g
all_codes_i_learnt_before/cms_part2_done/images/reservoir.jpg
all_codes_i_learnt_before/cms_part2_done/images/samurai.jpg
all_codes_i_learnt_before/cms_part2_done/images/strangelove.j
pg
all_codes_i_learnt_before/cms_part2_done/images/suspiria.jpg
all_codes_i_learnt_before/cms_part2_done/images/throne.jpg
all_codes_i_learnt_before/cms_part2_done/images/thumbs/.DS_
Store
all_codes_i_learnt_before/cms_part2_done/images/thumbs/alien
sth.jpg
all_codes_i_learnt_before/cms_part2_done/images/thumbs/alien
th.jpg
all_codes_i_learnt_before/cms_part2_done/images/thumbs/audit
ionth.jpg
all_codes_i_learnt_before/cms_part2_done/images/thumbs/bour
neth.jpg
all_codes_i_learnt_before/cms_part2_done/images/thumbs/casin
oth.jpg
all_codes_i_learnt_before/cms_part2_done/images/thumbs/chain
sawth.jpg
all_codes_i_learnt_before/cms_part2_done/images/thumbs/chris
tmasth.jpg
all_codes_i_learnt_before/cms_part2_done/images/thumbs/deadt
h.jpg
all_codes_i_learnt_before/cms_part2_done/images/thumbs/erase
rheadth.jpg
all_codes_i_learnt_before/cms_part2_done/images/thumbs/fema
leth.jpg
all_codes_i_learnt_before/cms_part2_done/images/thumbs/godf
atherth.jpg
all_codes_i_learnt_before/cms_part2_done/images/thumbs/highl
owth.jpg
all_codes_i_learnt_before/cms_part2_done/images/thumbs/incre
diblesth.jpg
all_codes_i_learnt_before/cms_part2_done/images/thumbs/labyr
inthth.jpg
all_codes_i_learnt_before/cms_part2_done/images/thumbs/mulh
ollandth.jpg
all_codes_i_learnt_before/cms_part2_done/images/thumbs/plane
tearthth.jpg
all_codes_i_learnt_before/cms_part2_done/images/thumbs/potte
rth.jpg
all_codes_i_learnt_before/cms_part2_done/images/thumbs/pulpt
h.jpg
all_codes_i_learnt_before/cms_part2_done/images/thumbs/ratat
ouilleth.jpg
all_codes_i_learnt_before/cms_part2_done/images/thumbs/reser
voirth.jpg
all_codes_i_learnt_before/cms_part2_done/images/thumbs/samu
raith.jpg
all_codes_i_learnt_before/cms_part2_done/images/thumbs/stran
geloveth.jpg
all_codes_i_learnt_before/cms_part2_done/images/thumbs/suspi
riath.jpg
all_codes_i_learnt_before/cms_part2_done/images/thumbs/thclo
ckwork.jpg
all_codes_i_learnt_before/cms_part2_done/images/thumbs/thron
eth.jpg
all_codes_i_learnt_before/cms_part2_done/images/thumbs/velve
tth.jpg
all_codes_i_learnt_before/cms_part2_done/images/thumbs/yuma
th.jpg
all_codes_i_learnt_before/cms_part2_done/images/velvet.jpg
all_codes_i_learnt_before/cms_part2_done/images/yuma.jpg
all_codes_i_learnt_before/cms_part2_done/moviedetail.php
Search:
"; ?>
back to list
all_codes_i_learnt_before/cms_part2_done/movielist.php
DVD Movie List
Show By Genre:
<choose genre>
Action
Comedy
Drama
Horror
Science Fiction
All Movies
Search:
".$row['movie_title']."".$row['movie_genre']."more...
";
}
?>
copyright 2009 all rights reserved
all_codes_i_learnt_before/practice/db_media.sql
-- phpMyAdmin SQL Dump
-- version 3.4.5
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Feb 04, 2012 at 03:11 AM
-- Server version: 5.5.16
-- PHP Version: 5.3.8
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET
@[email protected]@CHARACTER_SET_CLIENT */;
/*!40101 SET
@[email protected]@CHARACTER_SET_RESULTS */;
/*!40101 SET
@[email protected]@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Database: `db_media`
--
-- --------------------------------------------------------
--
-- Table structure for table `tbl_links`
--
CREATE TABLE IF NOT EXISTS `tbl_links` (
`links_id` smallint(5) unsigned NOT NULL
AUTO_INCREMENT,
`links_name` varchar(50) NOT NULL,
`links_content` varchar(100) NOT NULL,
PRIMARY KEY (`links_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1
AUTO_INCREMENT=6 ;
--
-- Dumping data for table `tbl_links`
--
INSERT INTO `tbl_links` (`links_id`, `links_name`,
`links_content`) VALUES
(1, 'Una Wu''s Studio Website', 'www.unawustudio.com'),
(2, 'Facebook', 'www.facebook.com/unawustudio'),
(3, 'Twitter', 'www.twitter.com/unawustudio');
-- --------------------------------------------------------
--
-- Table structure for table `tbl_news`
--
CREATE TABLE IF NOT EXISTS `tbl_news` (
`news_id` smallint(5) unsigned NOT NULL
AUTO_INCREMENT,
`news_img` varchar(50) NOT NULL DEFAULT 'noimage.jpg',
`news_title` varchar(100) NOT NULL,
`news_date` date NOT NULL,
`news_content` varchar(500) NOT NULL,
PRIMARY KEY (`news_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1
AUTO_INCREMENT=5 ;
--
-- Dumping data for table `tbl_news`
--
INSERT INTO `tbl_news` (`news_id`, `news_img`, `news_title`,
`news_date`, `news_content`) VALUES
(1, '1.jpg', 'Una Wu''s Studio Updating', '2012-02-01', 'There are
some new logo design updated at www.unawustudio.com '),
(2, '2.jpg', 'New concept of UWS', '2012-02-03', 'UWS(Una
Wu''s Studio) has a new concept that we''ll keep the best idea
for the best client. Clients are always the first.'),
(3, '3.jpg', 'Multimedia industries gradually into the boom',
'2012-02-03', 'Nowadays, multimedia industries gradually into
the boom.More and more multimedia people are needed by
society. The new graduates will set off again a climax.'),
(4, '4.jpg', 'The Multimedia News Release', '2012-02-03', 'Once
referred to as a "one-stop shop" for journalists to acquire
elements for a news story, the Multimedia News Release has
morphed into the ultimate marketing tool for consumer
engagement. ');
-- --------------------------------------------------------
--
-- Table structure for table `tbl_pf`
--
CREATE TABLE IF NOT EXISTS `tbl_pf` (
`pf_id` smallint(5) unsigned NOT NULL
AUTO_INCREMENT,
`pf_title` varchar(100) NOT NULL,
`pf_format` varchar(50) NOT NULL,
`pf_img` varchar(50) NOT NULL DEFAULT 'noimage.jpg',
`pf_content` varchar(500) NOT NULL,
`pf_date` date NOT NULL,
PRIMARY KEY (`pf_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1
AUTO_INCREMENT=8 ;
--
-- Dumping data for table `tbl_pf`
--
INSERT INTO `tbl_pf` (`pf_id`, `pf_title`, `pf_format`,
`pf_img`, `pf_content`, `pf_date`) VALUES
(1, 'Peking Opera', 'Illustrator', 'peking.jpg', 'Peking Opera is
the essence of China. Using Illustrator to make it as an elective
img, and using effectives to make it like a graffiti.', '2011-01-
19'),
(2, '1920''s Poster', 'Photoshop', 'poster.jpg', 'The inspiration
comes from the 1920''s superstar - Marilyn Monroe. Using
bright color to give it a fashion feeling. ', '2011-03-15'),
(3, 'Thai Greeting', 'Photoshop', 'thai.jpg', 'A logo for Thai
Greeting Resturant', '2011-05-10'),
(4, 'Forever', 'Photoshop', 'forever.jpg', 'A photography which is
taken by Una Wu. This photo shows a love forever.', '2011-06-
14'),
(5, 'Gee', 'Video', 'gee.jpg', 'This is the work from Una''s student
life, using Illustrator, after effect to do a little dancing video.',
'2011-09-08'),
(6, 'Columbia Official Website Redesign', 'Web', 'website.jpg',
'Using Dreamweaver to redesign Columbia website', '2011-10-
12'),
(7, 'Eldon House', 'Web', 'eldon.jpg', 'A practice website design
by dreamweaver', '2011-12-07');
-- --------------------------------------------------------
--
-- Table structure for table `tbl_team`
--
CREATE TABLE IF NOT EXISTS `tbl_team` (
`team_id` smallint(5) unsigned NOT NULL
AUTO_INCREMENT,
`team_name` varchar(100) NOT NULL,
`team_position` varchar(50) NOT NULL,
`team_date` datetime NOT NULL,
`team_img` varchar(50) NOT NULL DEFAULT 'noimage.jpg',
PRIMARY KEY (`team_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1
AUTO_INCREMENT=5 ;
--
-- Dumping data for table `tbl_team`
--
INSERT INTO `tbl_team` (`team_id`, `team_name`,
`team_position`, `team_date`, `team_img`) VALUES
(1, 'Guanyi Wu', 'Designer', '2012-02-01 10:00:00',
'guanyi.jpg'),
(2, 'Jianwei Zhang', 'Financial and Accounting', '2012-02-02
14:00:00', 'jianwei.jpg'),
(3, 'Tingrong Hang', 'Sales', '2012-02-03 09:00:00',
'tingrong.jpg'),
(4, 'Yue Feng', 'Sales', '2012-02-03 10:00:00', 'fengyue.jpg');
/*!40101 SET [email protected]_CHARACTER_SET_CLIENT
*/;
/*!40101 SET [email protected]_CHARACTER_SET_RESULTS
*/;
/*!40101 SET [email protected]_COLLATION_CONNECTION
*/;
all_codes_i_learnt_before/practice/php_script.php
";
}
?>
all_codes_i_learnt_before/start_files_week6/.DS_Store
all_codes_i_learnt_before/start_files_week6/_notes/dwsync.xml
all_codes_i_learnt_before/start_files_week6/images/.DS_Store
all_codes_i_learnt_before/start_files_week6/images/alien.jpg
all_codes_i_learnt_before/start_files_week6/images/aliens.jpg
all_codes_i_learnt_before/start_files_week6/images/audition.jp
g
all_codes_i_learnt_before/start_files_week6/images/bourne3.jpg
all_codes_i_learnt_before/start_files_week6/images/casino.jpg
all_codes_i_learnt_before/start_files_week6/images/chainsaw.jp
g
all_codes_i_learnt_before/start_files_week6/images/christmas.j
pg
all_codes_i_learnt_before/start_files_week6/images/clockwork.j
pg
all_codes_i_learnt_before/start_files_week6/images/dead.jpg
all_codes_i_learnt_before/start_files_week6/images/dvdsite.css
body {
font-family:Arial, Helvetica, sans-serif;
font-size: 12px;
}
tr {
padding-right:3px;
margin:12px;
border:0px;
}
input, select,textarea {
font-family:Arial, Helvetica, sans-serif;
font-size: 12px;
background-color:#CCCCCC;
}
#movieimage {
font-family:Arial, Helvetica, sans-serif;
font-size: 12px;
background-color:#CCCCCC;
}
#wrapper {
position:relative;
width:800px;
margin:0px auto;
}
#header {
font-size:18px;
width:300px;
height:50px;
float:left;
}
#search {
width:250px;
float:left;
}
#sort {
width:250px;
float:left;
}
#maincontent {
width:800px;
clear:left;
}
#footer {
font-size:10px;
text-align:center;
width:800px;
height:15px;
margin-top:10px;
}
#image {
position:absolute;
left:10px;
top:10px;
width:200px;
height:300px;
}
#title {
position:absolute;
left:250px;
top:10px;
font-size:18px;
width:200px;
height:20px;
}
#info {
position:absolute;
left:250px;
top:50px;
font-size:12px;
width:400px;
height:400px;
}
.dvdtitle {
font-size:14px;
font-weight:bold;
color:#333333;
}
.hilite {
font-style:italic;
}
all_codes_i_learnt_before/start_files_week6/images/eraserhead.
jpg
all_codes_i_learnt_before/start_files_week6/images/female.jpg
all_codes_i_learnt_before/start_files_week6/images/godfather.j
pg
all_codes_i_learnt_before/start_files_week6/images/highlow.jpg
all_codes_i_learnt_before/start_files_week6/images/incredibles.
jpg
all_codes_i_learnt_before/start_files_week6/images/labyrinth.jp
g
all_codes_i_learnt_before/start_files_week6/images/mulholland.
jpg
all_codes_i_learnt_before/start_files_week6/images/planetearth.
jpg
all_codes_i_learnt_before/start_files_week6/images/potter5.jpg
all_codes_i_learnt_before/start_files_week6/images/pulp.jpg
all_codes_i_learnt_before/start_files_week6/images/ratatouille.j
pg
all_codes_i_learnt_before/start_files_week6/images/reservoir.jp
g
all_codes_i_learnt_before/start_files_week6/images/samurai.jpg
all_codes_i_learnt_before/start_files_week6/images/strangelove
.jpg
all_codes_i_learnt_before/start_files_week6/images/suspiria.jpg
all_codes_i_learnt_before/start_files_week6/images/throne.jpg
all_codes_i_learnt_before/start_files_week6/images/thumbs/.DS
_Store
all_codes_i_learnt_before/start_files_week6/images/thumbs/alie
nsth.jpg
all_codes_i_learnt_before/start_files_week6/images/thumbs/alie
nth.jpg
all_codes_i_learnt_before/start_files_week6/images/thumbs/aud
itionth.jpg
all_codes_i_learnt_before/start_files_week6/images/thumbs/bou
rneth.jpg
all_codes_i_learnt_before/start_files_week6/images/thumbs/casi
noth.jpg
all_codes_i_learnt_before/start_files_week6/images/thumbs/cha
insawth.jpg
all_codes_i_learnt_before/start_files_week6/images/thumbs/chri
stmasth.jpg
all_codes_i_learnt_before/start_files_week6/images/thumbs/dea
dth.jpg
all_codes_i_learnt_before/start_files_week6/images/thumbs/eras
erheadth.jpg
all_codes_i_learnt_before/start_files_week6/images/thumbs/fem
aleth.jpg
all_codes_i_learnt_before/start_files_week6/images/thumbs/god
fatherth.jpg
all_codes_i_learnt_before/start_files_week6/images/thumbs/hig
hlowth.jpg
all_codes_i_learnt_before/start_files_week6/images/thumbs/incr
ediblesth.jpg
all_codes_i_learnt_before/start_files_week6/images/thumbs/lab
yrinthth.jpg
all_codes_i_learnt_before/start_files_week6/images/thumbs/mul
hollandth.jpg
all_codes_i_learnt_before/start_files_week6/images/thumbs/pla
netearthth.jpg
all_codes_i_learnt_before/start_files_week6/images/thumbs/pott
erth.jpg
all_codes_i_learnt_before/start_files_week6/images/thumbs/pul
pth.jpg
all_codes_i_learnt_before/start_files_week6/images/thumbs/rata
touilleth.jpg
all_codes_i_learnt_before/start_files_week6/images/thumbs/rese
rvoirth.jpg
all_codes_i_learnt_before/start_files_week6/images/thumbs/sam
uraith.jpg
all_codes_i_learnt_before/start_files_week6/images/thumbs/stra
ngeloveth.jpg
all_codes_i_learnt_before/start_files_week6/images/thumbs/sus
piriath.jpg
all_codes_i_learnt_before/start_files_week6/images/thumbs/thcl
ockwork.jpg
all_codes_i_learnt_before/start_files_week6/images/thumbs/thro
neth.jpg
all_codes_i_learnt_before/start_files_week6/images/thumbs/vel
vetth.jpg
all_codes_i_learnt_before/start_files_week6/images/thumbs/yu
math.jpg
all_codes_i_learnt_before/start_files_week6/images/velvet.jpg
all_codes_i_learnt_before/start_files_week6/images/yuma.jpg
all_codes_i_learnt_before/start_files_week6/movie_db.sql
-- phpMyAdmin SQL Dump
-- version 3.2.4
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Jan 17, 2011 at 04:49 PM
-- Server version: 5.1.37
-- PHP Version: 5.2.11
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
/*!40101 SET
@[email protected]@CHARACTER_SET_CLIENT */;
/*!40101 SET
@[email protected]@CHARACTER_SET_RESULTS */;
/*!40101 SET
@[email protected]@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Database: 'db_moviesa'
--
-- --------------------------------------------------------
--
-- Table structure for table 'tbl_movies'
--
CREATE TABLE tbl_movies (
movie_id smallint(4) unsigned NOT NULL
AUTO_INCREMENT,
movie_title varchar(150) NOT NULL,
movie_year year(4) NOT NULL,
movie_genre varchar(50) NOT NULL,
movie_director varchar(100) NOT NULL,
movie_thumb varchar(100) NOT NULL,
movie_image varchar(100) NOT NULL,
movie_info text NOT NULL,
movie_status varchar(20) NOT NULL,
movie_rating varchar(6) NOT NULL,
movie_format varchar(20) NOT NULL,
movie_review int(4) DEFAULT NULL,
movie_studio varchar(120) NOT NULL,
movie_runtime varchar(25) DEFAULT NULL,
movie_region varchar(2) DEFAULT NULL,
PRIMARY KEY (movie_id)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table 'tbl_movies'
--
INSERT INTO tbl_movies VALUES(1, 'Dr. Strangelove', 1960,
'Comedy', 'Kubrick', 'strangeloveth.jpg', 'strangelove.jpg',
'Arguably the greatest black comedy ever made, Stanley
Kubrick''s cold-war classic is the ultimate satire of the nuclear
age. Dr. Strangelove is a perfect spoof of political and military
insanity, beginning when General Jack D. Ripper (Sterling
Hayden), a maniacal warrior obsessed with "the purity of
precious bodily fluids," mounts his singular campaign against
Communism by ordering a squadron of B-52 bombers to attack
the Soviet Union. The Soviets counter the threat with a so-
called "Doomsday Device," and the world hangs in the balance
while the U.S. president (Peter Sellers) engages in hilarious
hot-line negotiations with his Soviet counterpart.', 'Rented',
'PG-13', 'Widescreen', 4, 'Warner Brothers', '172 Minutes', '1');
INSERT INTO tbl_movies VALUES(2, 'Blue Velvet', 1986,
'Drama', 'Lynch', 'velvetth.jpg', 'velvet.jpg', 'A man returns to
his home town after being away and discovers a severed human
ear in a field. Not satisfied with the police''s pace, he and the
police detective''s daughter carry out their own investigation.
The object of his investigation turns out to be a beautiful and
mysterious woman involved with a violent and perversely evil
man.', 'Available', 'R', 'Widescreen', 3, 'New Line', '154
Minutes', '0');
INSERT INTO tbl_movies VALUES(3, 'Mulholland Drive',
2001, 'Drama', 'Lynch', 'mulhollandth.jpg', 'mulholland.jpg',
'Pandora couldn''t resist opening the forbidden box containing
all the delusions of mankind, and let''s just say David Lynch, in
Mulholland Drive, indulges a similar impulse. Employing a
familiar film noir atmosphere to unravel, as he coyly puts it, "a
love story in the city of dreams," Lynch establishes a
foreboding but playful narrative in the film''s first half before
subsuming all of Los Angeles and its corrupt ambitions into his
voyeuristic universe of desire. Identities exchange, amnesia
proliferates, and nightmare visions are induced, but not before
we''ve become enthralled by the film''s two main characters: the
dazed and sullen femme fatale, Rita (Laura Elena Harring), and
the pert blonde just-arrived from Ontario (played exquisitely by
Naomi Watts) who decides to help Rita regain her memory.
Triggered by a rapturous Spanish-language version of Roy
Orbison''s "Crying," Lynch''s best film since Blue Velvet splits
glowingly into two equally compelling parts.', 'Rented', 'R',
'Fullscreen', 4, 'New Line', '173 Minutes', '1');
INSERT INTO tbl_movies VALUES(4, 'Eraserhead', 1977,
'Science Fiction', 'Lynch', 'eraserheadth.jpg', 'eraserhead.jpg', 'Is
it a nightmare or an actual view of a post-apocalyptic world?
Set in an industrial town in which giant machines are constantly
working, spewing smoke, and making noise that is inescapable,
Henry Spencer lives in a building that, like all the others,
appears to be abandoned. The lights flicker on and off, he has
bowls of water in his dresser drawers, and for his only diversion
he watches and listens to the Lady in the Radiator sing about
finding happiness in heaven. Henry has a girlfriend, Mary X,
who has frequent spastic fits. Mary gives birth to Henry''s child,
a frightening looking mutant, which leads to the injection of all
sorts of sexual imagery into the depressive and chaotic mix.',
'Available', 'PG-13', 'Widescreen', 3, 'Paramount', '98 Minutes',
'1');
INSERT INTO tbl_movies VALUES(5, 'Seven Samurai', 1954,
'Action', 'Kurosawa', 'samuraith.jpg', 'samurai.jpg', 'Hailed as
the greatest film in the history of Japanese cinema, Seven
Samurai is director Akira Kurosawa''s undisputed masterpiece.
Arguably the greatest of all jidai-gecki (or historical swordplay
films), Kurosawa''s classic 1954 action drama has never been
surpassed in terms of sheer power of emotion, kinetic energy,
and dynamic character development. The story is set during the
civil unrest of 16th-century Japan, as the cowering residents of
a small farming village are seeking protection against seasonal
attacks by a band of marauding bandits. Offering mere handfuls
of rice as payment, they hire seven unemployed "ronin"
(masterless samurai), including a boastful swordsman (Toshiro
Mifune) who is actually a peasant farmer''s son, desperately
seeking glory, acceptance, and revenge against those who
destroyed his family. Led by the calmly strategic Kambei
(Takashi Shimura, star of Kurosawa''s previous classic, Ikiru),
the samurai form mutual bonds of honor and respect, but remain
distant from the villagers, knowing that their assignment may
prove to be fatal.', 'Available', 'PG-13', 'Widescreen', 5, 'Toho',
'183 Minutes', '0');
INSERT INTO tbl_movies VALUES(6, 'Throne of Blood', 1961,
'Drama', 'Kurosawa', 'throneth.jpg', 'throne.jpg', 'One of the
most celebrated screen adaptations of Shakespeare into film,
Akira Kurosawaís Throne of Blood re-imagines Macbeth in
feudal Japan. Starring Kurosawaís longtime collaborator
Toshiro Mifune and the legendary Isuzu Yamada as his ruthless
wife, the film tells of a valiant warriorís savage rise to power
and his ignominious fall. With Throne of Blood, Kurosawa
fuses one of Shakespeareís greatest tragedies with the formal
elements of Japanese Noh theater to make a Macbeth that is all
his ownóa classic tale of ambition and duplicity set against a
ghostly landscape of fog and inescapable doom.', 'Rented', 'PG-
13', 'Widescreen', 5, 'Toho', '212 Minutes', '0');
INSERT INTO tbl_movies VALUES(7, 'High and Low', 1963,
'Drama', 'Kurosawa', 'highlowth.jpg', 'highlow.jpg', 'Although
best known for his samurai classics, Japanese master filmmaker
Akira Kurosawa proved himself equally adept at contemporary
dramas and thrillers, and 1962''s High and Low offers a
powerful showcase for Kurosawa''s versatile skill. The great
Toshiro Mifune stars as a wealthy industrialist who has just
raised a large sum of money to execute his planned takeover of
a successful shoe manufacturer. Fate intervenes when he
receives a phone call informing him that his son has been
kidnapped, and by unfortunate coincidence the ransom demand
is nearly equivalent to the amount Mifune has raised for his
corporate coup. A philosophical dilemma emerges when it is
revealed that the executive''s son is safe, and that it is actually
his chauffeur''s son who has been taken. What follows is both a
tense detective thriller, as the police attempt to track down the
kidnapper, and a compelling illustration of class division in
Japan--the "high and low" of the title.', 'Available', 'PG-13',
'Fullscreen', 4, 'Toho', '132 Minutes', '0');
INSERT INTO tbl_movies VALUES(8, 'Female Trouble', 1974,
'Comedy', 'Waters', 'femaleth.jpg', 'female.jpg', 'John Waters
expands the definition of female trouble in this mutant tribute to
good-girl-gone-bad drive-in melodramas. The girl is, of course,
cross-dressing cult icon Divine, Waters''s plus-sized muse.
Divine is at her most gleefully outrageous as teenage brat Dawn
Davenport, who runs away from home and into a life of wanton
hedonism all because she didn''t get cha-cha heels for
Christmas. Almost immediately she''s molested by a sleazy
motorcycle thug (also played by Divine--is this Waters''s idea of
"love thyself"?), but she doesn''t let motherhood interfere with
her plans of stardom and turns herself into an unlikely fashion
statement in an apocalyptic fashion show. Waters''s fourth
feature, a follow-up to the midnight movie hit Pink Flamingos,
is just as cinematically primitive and even more gleefully
vulgar, right down to the electric climax of Dawn''s road to
everlasting fame.', 'Rented', 'R', 'Fullscreen', 3, 'United Artists',
'122 Minutes', '1');
INSERT INTO tbl_movies VALUES(9, 'The Godfather', 1972,
'Drama', 'Coppola', 'godfatherth.jpg', 'godfather.jpg', 'Generally
acknowledged as a bona fide classic, this Francis Ford Coppola
film is one of those rare experiences that feels perfectly right
from beginning to end--almost as if everyone involved had been
born to participate in it. Based on Mario Puzo''s bestselling
novel about a Mafia dynasty, Coppola''s Godfather extracted
and enhanced the most universal themes of immigrant
experience in America: the plotting-out of hopes and dreams for
one''s successors, the raising of children to carry on the good
work, etc. In the midst of generational strife during the Vietnam
years, the film somehow struck a chord with a nation fascinated
by the metamorphosis of a rebellious son (Al Pacino) into the
keeper of his father''s dream. Marlon Brando played against
Puzo''s own conception of patriarch Vito Corleone, and time has
certainly proven the actor correct. The rest of the cast,
particularly James Caan, John Cazale, and Robert Duvall as the
rest of Vito''s male brood--all coping with how to take the
mantle of responsibility from their father--is seamless and
wonderful.', 'Available', 'PG-13', 'Widescreen', 5, 'Paramount',
'176 Minutes', '1');
INSERT INTO tbl_movies VALUES(10, 'Alien', 1979, 'Science
Fiction', 'Scott', 'alienth.jpg', 'alien.jpg', 'The terror begins when
the crew of a spaceship investigates a transmission from a
desolate planet, and discovers a life form that is perfectly
evolved to annihilate mankind. One by one, each crew member
is slain until only Ripley is left, leading to an explosive
conclusion that sets the stage for its stunning sequel, "Aliens."',
'On Order', 'PG-13', 'Fullscreen', 4, 'New Line', '134 Minutes',
'1');
INSERT INTO tbl_movies VALUES(11, 'Aliens', 1986, 'Science
Fiction', 'Cameron', 'aliensth.jpg', 'aliens.jpg', 'In this action-
packed sequel to Alien, Sigourney Weaver returns as Ripley, the
only survivor from mankind''s first encounter with the
monstrous Alien. Her account of the Alien and the fate of her
crew are received with skepticism - until the mysterious
disappearance of colonists on LV-426 leads her to join a team
of high-tech colonial marines sent in to investigate. Personally
supervised by director James Cameron, this special edition
includes scenes eliminated prior to the film''s 1986 release
which broaden the narrative scope and enrich the emotional
impact of the film.', 'Available', 'PG-13', 'Widescreen', 4,
'Warner Brothers', '136 Minutes', '1');
INSERT INTO tbl_movies VALUES(12, 'The Texas Chainsaw
Massacre', 1974, 'Horror', 'Hooper', 'chainsawth.jpg',
'chainsaw.jpg', 'It has been called grisly, sick, and perverse as
well as raw, unshakeable, and the movie that redefined horror.
It was attacked by churches, banned by governments, and
acclaimed by only the bravest of critics. It stunned audiences
worldwide and set a new standard in movie terror forever. In
1974, writer-producer-director Tobe Hooper unleashed this
dark, visionary tale about a group of five young friends who
face a nightmare of torment at the hands of a depraved Texas
clan. Today it remains unequaled as a landmark of outlaw
filmmaking and unparalleled in its impact as perhaps the most
frightening motion picture ever made.', 'Available', 'R',
'Fullscreen', 4, 'United Artists', '94 Minutes', '1');
INSERT INTO tbl_movies VALUES(13, 'Audition', 1999,
'Horror', 'Miike', 'auditionth.jpg', 'audition.jpg', 'If you want the
full sledgehammer-to-the-stomach effect of Audition, stop
reading this review now. Just watch it and take the
consequences. At first glance, Takashi Miike''s jack in the box
of a movie works like a romantic comedy: amiable widower
Shigeharu Aoyama (Ryo Ishibashi) decides it''s time to find a
new wife, and a friend suggests holding a fake audition to find
the right girl. It soon becomes clear that there is something
wrong with Aoyama''s choice. This is no ordinary Fatal
Attraction-style thriller, however; Audition slowly and carefully
builds into a wrenching exploration of both deep male fears and
the stereotype of the cute, submissive Japanese woman.
Audition is by no means an easy movie to watch--even hardcore
horror fans may have trouble--but it will stay with you for a
long, long time.', 'Available', 'NC-17', 'Fullscreen', 2, 'Toho',
'94 Minutes', '0');
INSERT INTO tbl_movies VALUES(14, 'Ratatouille', 2007,
'Comedy', 'Bird', 'ratatouilleth.jpg', 'ratatouille.jpg', 'One key
point: if you can get over the natural gag reflex of seeing
hundreds of rodents swarming over a restaurant kitchen, you
will be free to enjoy the glory of Ratatouille, a delectable Pixar
hit. Our hero is Remy, a French rat (voiced by Patton Oswalt)
with a cultivated palate, who rises from his humble beginnings
to become head chef at a Paris restaurant. How this happens is
the stuff of Pixar magic, that ineffable blend of headlong
comedy, seamless technology, and wonder (in the latter
department, this movie''s views of nighttime Paris are on a par
with French cinema at its most lyrical). Director Brad Bird (The
Incredibles) doesn''t quite keep all his spinning plates in the air,
but the gags are great and the animation amazingly expressive--
Remy''s shrugs and nods are nimbler than many flesh-and-blood
actors can manage. Refreshingly, the movie''s characters aren''t
celebrity-reliant, with the most recognizable voice coming from
Peter O''Toole''s snide food critic.', 'Rented', 'G', 'Widescreen',
5, 'Pixar', '124 Minutes', '1');
INSERT INTO tbl_movies VALUES(15, 'The Incredibles', 2004,
'Comedy', 'Bird', 'incrediblesth.jpg', 'incredibles.jpg', 'After
creating the last great traditionally animated film of the 20th
century, The Iron Giant, filmmaker Brad Bird joined top-drawer
studio Pixar to create this exciting, completely entertaining
computer-animated film. Bird gives us a family of "supers," a
brood of five with special powers desperately trying to fit in
with the 9-to-5 suburban lifestyle. Of course, in a more innocent
world, Bob and Helen Parr were superheroes, Mr. Incredible and
Elastigirl. But blasted lawsuits and public disapproval forced
them and other supers to go incognito, making it even tougher
for their school-age kids, the shy Violet and the aptly named
Dash. When a stranger named Mirage (voiced by Elizabeth
Pena) secretly recruits Bob for a potential mission, the old glory
days spin in his head, even if his body is a bit too plump for his
old super suit.', 'Available', 'G', 'Widescreen', 5, 'Pixar', '122
Minutes', '1');
INSERT INTO tbl_movies VALUES(16, 'Night of the Living
Dead', 1968, 'Horror', 'Romero', 'deadth.jpg', 'dead.jpg', 'Night
of the Living Dead is a seminal 1968 black-and-white
independent horror film directed by George A. Romero. Early
drafts of the script were titled Monster Flick, but it was known
as Night of Anubis and Night of the Flesh Eaters during
production. The film stars Duane Jones as Ben and Judith
O''Dea as Barbra. The plot revolves around the mysterious
reanimation of the dead and the efforts of Ben, Barbra and five
others to survive the night while trapped in a rural Pennsylvania
farmhouse. Romero produced the film on the small budget of
$114,000, but after a decade of theatrical re-releases it had
grossed an estimated $12 million in the United States and $30
million internationally.', 'Available', 'PG-13', 'Fullscreen', 4,
'Warner Brothers', '85 Minutes', '1');
INSERT INTO tbl_movies VALUES(17, 'Suspiria', 1977,
'Horror', 'Argento', 'suspiriath.jpg', 'suspiria.jpg', 'Outside of
devoted cult audiences, many Americans have yet to discover
the extremely stylish, relentlessly terrifying Italian horror
genre, or the films of its talented virtuoso, Dario Argento.
Suspiria, part one of a still-uncompleted trilogy (the luminously
empty Inferno was the second), is considered his masterpiece by
Argento devotees but also doubles as a perfect starting point for
those unfamiliar with the director or his genre. The convoluted
plot follows an American dancer (Jessica Harper) from her
arrival at a European ballet school to her discovery that it''s
actually a witches coven; but, really, don''t worry about that too
much. Argento makes narrative subservient to technique,
preferring instead to assault the senses and nervous system with
mood, atmosphere, illusory gore, garish set production, a
menacing camera, and perhaps the creepiest score ever created
for a movie. It''s essentially a series of effectively unsettling set
pieces--a raging storm that Harper should have taken for an
omen, and a blind man attacked by his own dog are just two
examples--strung together on a skeleton structure. But once
you''ve seen it, you''ll never forget it.', 'Available', 'R',
'Widescreen', 4, 'Italifilm Studios', '134 Minutes', '0');
INSERT INTO tbl_movies VALUES(18, 'Casino', 1995,
'Drama', 'Scorsese', 'casinoth.jpg', 'casino.jpg', 'This Martin
Scorsese film depicts the Janus-like quality of Las Vegas--it has
a glittering, glamorous face, as well as a brutal, cruel one. Ace
Rothstein and Nicky Santoro, mobsters who move to Las Vegas
to make their mark, live and work in this paradoxical world.
Seen through their eyes, each as a foil to the other, the details
of mob involvement in the casinos of the 1970''s and ''80''s are
revealed. Ace is the smooth operator of the Tangiers casino,
while Nicky is his boyhood friend and tough strongman, robbing
and shaking down the locals. However, they each have a tragic
flaw--Ace falls in love with a hustler, Ginger, and Nicky falls
into an ever-deepening spiral of drugs and violence.', 'Rented',
'R', 'Widescreen', 3, 'Warner Brothers', '2 hours 10 Minutes',
'1');
INSERT INTO tbl_movies VALUES(24, 'A Clockwork Orange',
1971, 'Science Fiction', '', 'thclockwork.jpg', 'clockwork.jpg',
'classic sf movie', 'Available', 'R', 'Widescreen', 5, 'Warners',
'2:22', '1');
all_codes_i_learnt_before/start_files_week6/movie_details.php
";?>
Studio
Runtime
all_codes_i_learnt_before/start_files_week6/movie_list_start.ph
p
".$row['movie_title']." (".$row['movie_year'].") more...
";
//print the values along with markup on the page
}/* "" is to close src, and the img will shows as many as
database has; The name in the $row is database's id name */
?>
all_codes_i_learnt_before/start_files_week6/wamp/www/start_fi
les_week6/movie_details.php
";?>
Studio
all_codes_i_learnt_before/start_files_week6/wamp/www/start_fi
les_week6/movie_list_start.php
".$row['movie_title']." (".$row['movie_year'].") more...
";
//print the values along with markup on the page
}/* "" is to close src, and the img will shows as many as
database has; The name in the $row is database's id name */
?>
all_codes_i_learnt_before/week11_cmspart2/addmovie.php
<?php
require_once("connect.php");
$title = $_POST['movie_title'];
$year = $_POST['movie_year'];
$genre = $_POST['movie_genre'];
$director = $_POST['movie_director'];
$image = $_POST['movie_image'];
$info = $_POST['movie_info'];
$status = $_POST['movie_status'];
$rating = $_POST['movie_rating'];
$format = $_POST['movie_format'];
$review = $_POST['movie_review'];
$studio = $_POST['movie_studio'];
$runtime = $_POST['movie_runtime'];
$region = $_POST['movie_region'];
$thumb = "th_".$image;
$qstring = "INSERT INTO tbl_movies
VALUES(NULL,'".$title."','".$year."','".$genre."','".$director."',
'".$thumb."','".$image."','".$info."','".$status."','".$rating."','".$f
ormat."','".$review."','".$studio."','".$runtime."','".$region."')";
$result = mysql_query($qstring);
header("Location: admin_add_movie.php");
?>
all_codes_i_learnt_before/week11_cmspart2/admin_add_movie.
php
Add a MovieTitle:Year:Genre:Action
Comedy
Drama
Horror
Science Fiction
Director:Image:Info:Status:Available
Rented
Not in Stock
Rating:Format:
Widescreen
FullscreenReview:
(out of 5)Studio:Runtime:
(hh:mm)Region:
all_codes_i_learnt_before/week11_cmspart2/admin_delete_mov
ie.php
<?php
require_once("connect.php"); /*new page connect code*/
$thismovie = $_GET['id'];
$qstring = "DELETE FROM tbl_movies WHERE
movie_id=" .$thismovie; /*change the variable name into your
own words;Phrases: INSERT INTO, SELECT FROM, DELETE
FROM, UPDATE SET*/
$byebye = mysql_query($qstring);
header("Location: admin_main.php");
?>
all_codes_i_learnt_before/week11_cmspart2/admin_edit_movie.
php
Add a
MovieTitle:Year:Genre:Director:Image:Info:Status:Rating:Form
at:Review:
(out of 5)Studio:Runtime:
(hh:mm)Region:
all_codes_i_learnt_before/week11_cmspart2/admin_main.php
DVD Movie List
Show By Genre:
<choose genre>
Action
Comedy
Drama
Horror
Science Fiction
All Movies
Search:
".$row['movie_title']."".$row['movie_genre']."edit...delete
"; /* is space code*/
}
?>
copyright 2009 all rights reserved
all_codes_i_learnt_before/week11_cmspart2/connect.php
<?php
mysql_connect("localhost","root","");
mysql_select_db("db_movies");
?>
all_codes_i_learnt_before/week11_cmspart2/db_movies.sql
-- phpMyAdmin SQL Dump
-- version 3.2.4
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Feb 15, 2010 at 04:00 PM
-- Server version: 5.1.37
-- PHP Version: 5.2.11
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
/*!40101 SET
@[email protected]@CHARACTER_SET_CLIENT */;
/*!40101 SET
@[email protected]@CHARACTER_SET_RESULTS */;
/*!40101 SET
@[email protected]@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Database: 'db_dvdsite'
--
-- --------------------------------------------------------
--
-- Table structure for table 'tbl_movies'
--
CREATE TABLE tbl_movies (
movie_id smallint(4) unsigned NOT NULL
AUTO_INCREMENT,
movie_title varchar(150) NOT NULL,
movie_year year(4) NOT NULL,
movie_genre varchar(50) NOT NULL,
movie_director varchar(100) NOT NULL,
movie_thumb varchar(100) NOT NULL,
movie_image varchar(100) NOT NULL,
movie_info text NOT NULL,
movie_status varchar(20) NOT NULL,
movie_rating varchar(6) NOT NULL,
movie_format varchar(20) NOT NULL,
movie_review int(4) DEFAULT NULL,
movie_studio varchar(120) NOT NULL,
movie_runtime varchar(25) DEFAULT NULL,
movie_region varchar(2) DEFAULT NULL,
PRIMARY KEY (movie_id)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table 'tbl_movies'
--
INSERT INTO tbl_movies VALUES(1, 'Dr. Strangelove', 1960,
'Comedy', 'Kubrick', 'strangeloveth.jpg', 'strangelove.jpg',
'Arguably the greatest black comedy ever made, Stanley
Kubrick''s cold-war classic is the ultimate satire of the nuclear
age. Dr. Strangelove is a perfect spoof of political and military
insanity, beginning when General Jack D. Ripper (Sterling
Hayden), a maniacal warrior obsessed with "the purity of
precious bodily fluids," mounts his singular campaign against
Communism by ordering a squadron of B-52 bombers to attack
the Soviet Union. The Soviets counter the threat with a so-
called "Doomsday Device," and the world hangs in the balance
while the U.S. president (Peter Sellers) engages in hilarious
hot-line negotiations with his Soviet counterpart.', 'Rented',
'PG-13', 'Widescreen', 4, 'Warner Brothers', '172 Minutes', '1');
INSERT INTO tbl_movies VALUES(2, 'Blue Velvet', 1986,
'Drama', 'Lynch', 'velvetth.jpg', 'velvet.jpg', 'A man returns to
his home town after being away and discovers a severed human
ear in a field. Not satisfied with the police''s pace, he and the
police detective''s daughter carry out their own investigation.
The object of his investigation turns out to be a beautiful and
mysterious woman involved with a violent and perversely evil
man.', 'Available', 'R', 'Widescreen', 3, 'New Line', '154
Minutes', '0');
INSERT INTO tbl_movies VALUES(3, 'Mulholland Drive',
2001, 'Drama', 'Lynch', 'mulhollandth.jpg', 'mulholland.jpg',
'Pandora couldn''t resist opening the forbidden box containing
all the delusions of mankind, and let''s just say David Lynch, in
Mulholland Drive, indulges a similar impulse. Employing a
familiar film noir atmosphere to unravel, as he coyly puts it, "a
love story in the city of dreams," Lynch establishes a
foreboding but playful narrative in the film''s first half before
subsuming all of Los Angeles and its corrupt ambitions into his
voyeuristic universe of desire. Identities exchange, amnesia
proliferates, and nightmare visions are induced, but not before
we''ve become enthralled by the film''s two main characters: the
dazed and sullen femme fatale, Rita (Laura Elena Harring), and
the pert blonde just-arrived from Ontario (played exquisitely by
Naomi Watts) who decides to help Rita regain her memory.
Triggered by a rapturous Spanish-language version of Roy
Orbison''s "Crying," Lynch''s best film since Blue Velvet splits
glowingly into two equally compelling parts.', 'Rented', 'R',
'Fullscreen', 4, 'New Line', '173 Minutes', '1');
INSERT INTO tbl_movies VALUES(4, 'Eraserhead', 1977,
'Science Fiction', 'Lynch', 'eraserheadth.jpg', 'eraserhead.jpg', 'Is
it a nightmare or an actual view of a post-apocalyptic world?
Set in an industrial town in which giant machines are constantly
working, spewing smoke, and making noise that is inescapable,
Henry Spencer lives in a building that, like all the others,
appears to be abandoned. The lights flicker on and off, he has
bowls of water in his dresser drawers, and for his only diversion
he watches and listens to the Lady in the Radiator sing about
finding happiness in heaven. Henry has a girlfriend, Mary X,
who has frequent spastic fits. Mary gives birth to Henry''s child,
a frightening looking mutant, which leads to the injection of all
sorts of sexual imagery into the depressive and chaotic mix.',
'Available', 'PG-13', 'Widescreen', 3, 'Paramount', '98 Minutes',
'1');
INSERT INTO tbl_movies VALUES(5, 'Seven Samurai', 1954,
'Action', 'Kurosawa', 'samuraith.jpg', 'samurai.jpg', 'Hailed as
the greatest film in the history of Japanese cinema, Seven
Samurai is director Akira Kurosawa''s undisputed masterpiece.
Arguably the greatest of all jidai-gecki (or historical swordplay
films), Kurosawa''s classic 1954 action drama has never been
surpassed in terms of sheer power of emotion, kinetic energy,
and dynamic character development. The story is set during the
civil unrest of 16th-century Japan, as the cowering residents of
a small farming village are seeking protection against seasonal
attacks by a band of marauding bandits. Offering mere handfuls
of rice as payment, they hire seven unemployed "ronin"
(masterless samurai), including a boastful swordsman (Toshiro
Mifune) who is actually a peasant farmer''s son, desperately
seeking glory, acceptance, and revenge against those who
destroyed his family. Led by the calmly strategic Kambei
(Takashi Shimura, star of Kurosawa''s previous classic, Ikiru),
the samurai form mutual bonds of honor and respect, but remain
distant from the villagers, knowing that their assignment may
prove to be fatal.', 'Available', 'PG-13', 'Widescreen', 5, 'Toho',
'183 Minutes', '0');
INSERT INTO tbl_movies VALUES(6, 'Throne of Blood', 1961,
'Drama', 'Kurosawa', 'throneth.jpg', 'throne.jpg', 'One of the
most celebrated screen adaptations of Shakespeare into film,
Akira Kurosawaís Throne of Blood re-imagines Macbeth in
feudal Japan. Starring Kurosawaís longtime collaborator
Toshiro Mifune and the legendary Isuzu Yamada as his ruthless
wife, the film tells of a valiant warriorís savage rise to power
and his ignominious fall. With Throne of Blood, Kurosawa
fuses one of Shakespeareís greatest tragedies with the formal
elements of Japanese Noh theater to make a Macbeth that is all
his ownóa classic tale of ambition and duplicity set against a
ghostly landscape of fog and inescapable doom.', 'Rented', 'PG-
13', 'Widescreen', 5, 'Toho', '212 Minutes', '0');
INSERT INTO tbl_movies VALUES(7, 'High and Low', 1963,
'Drama', 'Kurosawa', 'highlowth.jpg', 'highlow.jpg', 'Although
best known for his samurai classics, Japanese master filmmaker
Akira Kurosawa proved himself equally adept at contemporary
dramas and thrillers, and 1962''s High and Low offers a
powerful showcase for Kurosawa''s versatile skill. The great
Toshiro Mifune stars as a wealthy industrialist who has just
raised a large sum of money to execute his planned takeover of
a successful shoe manufacturer. Fate intervenes when he
receives a phone call informing him that his son has been
kidnapped, and by unfortunate coincidence the ransom demand
is nearly equivalent to the amount Mifune has raised for his
corporate coup. A philosophical dilemma emerges when it is
revealed that the executive''s son is safe, and that it is actually
his chauffeur''s son who has been taken. What follows is both a
tense detective thriller, as the police attempt to track down the
kidnapper, and a compelling illustration of class division in
Japan--the "high and low" of the title.', 'Available', 'PG-13',
'Fullscreen', 4, 'Toho', '132 Minutes', '0');
INSERT INTO tbl_movies VALUES(8, 'Female Trouble', 1974,
'Comedy', 'Waters', 'femaleth.jpg', 'female.jpg', 'John Waters
expands the definition of female trouble in this mutant tribute to
good-girl-gone-bad drive-in melodramas. The girl is, of course,
cross-dressing cult icon Divine, Waters''s plus-sized muse.
Divine is at her most gleefully outrageous as teenage brat Dawn
Davenport, who runs away from home and into a life of wanton
hedonism all because she didn''t get cha-cha heels for
Christmas. Almost immediately she''s molested by a sleazy
motorcycle thug (also played by Divine--is this Waters''s idea of
"love thyself"?), but she doesn''t let motherhood interfere with
her plans of stardom and turns herself into an unlikely fashion
statement in an apocalyptic fashion show. Waters''s fourth
feature, a follow-up to the midnight movie hit Pink Flamingos,
is just as cinematically primitive and even more gleefully
vulgar, right down to the electric climax of Dawn''s road to
everlasting fame.', 'Rented', 'R', 'Fullscreen', 3, 'United Artists',
'122 Minutes', '1');
INSERT INTO tbl_movies VALUES(9, 'The Godfather', 1972,
'Drama', 'Coppola', 'godfatherth.jpg', 'godfather.jpg', 'Generally
110111213142.docx
110111213142.docx
110111213142.docx
110111213142.docx
110111213142.docx
110111213142.docx
110111213142.docx
110111213142.docx
110111213142.docx
110111213142.docx
110111213142.docx
110111213142.docx
110111213142.docx
110111213142.docx
110111213142.docx
110111213142.docx
110111213142.docx
110111213142.docx
110111213142.docx
110111213142.docx
110111213142.docx
110111213142.docx
110111213142.docx

More Related Content

More from hyacinthshackley2629

Your company recently reviewed the results of a penetration test.docx
Your company recently reviewed the results of a penetration test.docxYour company recently reviewed the results of a penetration test.docx
Your company recently reviewed the results of a penetration test.docxhyacinthshackley2629
 
Your company wants to explore moving much of their data and info.docx
Your company wants to explore moving much of their data and info.docxYour company wants to explore moving much of their data and info.docx
Your company wants to explore moving much of their data and info.docxhyacinthshackley2629
 
Your company plans to establish MNE manufacturing operations in Sout.docx
Your company plans to establish MNE manufacturing operations in Sout.docxYour company plans to establish MNE manufacturing operations in Sout.docx
Your company plans to establish MNE manufacturing operations in Sout.docxhyacinthshackley2629
 
Your company just purchased a Dell server MD1420 DAS to use to store.docx
Your company just purchased a Dell server MD1420 DAS to use to store.docxYour company just purchased a Dell server MD1420 DAS to use to store.docx
Your company just purchased a Dell server MD1420 DAS to use to store.docxhyacinthshackley2629
 
your company is moving to a new HRpayroll system that is sponsored .docx
your company is moving to a new HRpayroll system that is sponsored .docxyour company is moving to a new HRpayroll system that is sponsored .docx
your company is moving to a new HRpayroll system that is sponsored .docxhyacinthshackley2629
 
Your company is considering the implementation of a technology s.docx
Your company is considering the implementation of a technology s.docxYour company is considering the implementation of a technology s.docx
Your company is considering the implementation of a technology s.docxhyacinthshackley2629
 
Your company is a security service contractor that consults with bus.docx
Your company is a security service contractor that consults with bus.docxYour company is a security service contractor that consults with bus.docx
Your company is a security service contractor that consults with bus.docxhyacinthshackley2629
 
Your company has just sent you to a Project Management Conference on.docx
Your company has just sent you to a Project Management Conference on.docxYour company has just sent you to a Project Management Conference on.docx
Your company has just sent you to a Project Management Conference on.docxhyacinthshackley2629
 
Your company has designed an information system for a library.  The .docx
Your company has designed an information system for a library.  The .docxYour company has designed an information system for a library.  The .docx
Your company has designed an information system for a library.  The .docxhyacinthshackley2629
 
Your company has had embedded HR generalists in business units for t.docx
Your company has had embedded HR generalists in business units for t.docxYour company has had embedded HR generalists in business units for t.docx
Your company has had embedded HR generalists in business units for t.docxhyacinthshackley2629
 
Your company You are a new Supply Chain Analyst with the ACME.docx
Your company   You are a new Supply Chain Analyst with the ACME.docxYour company   You are a new Supply Chain Analyst with the ACME.docx
Your company You are a new Supply Chain Analyst with the ACME.docxhyacinthshackley2629
 
Your company has asked that you create a survey to collect data .docx
Your company has asked that you create a survey to collect data .docxYour company has asked that you create a survey to collect data .docx
Your company has asked that you create a survey to collect data .docxhyacinthshackley2629
 
Your Communications PlanDescriptionA.What is your .docx
Your Communications PlanDescriptionA.What is your .docxYour Communications PlanDescriptionA.What is your .docx
Your Communications PlanDescriptionA.What is your .docxhyacinthshackley2629
 
Your community includes people from diverse backgrounds. Answer .docx
Your community includes people from diverse backgrounds. Answer .docxYour community includes people from diverse backgrounds. Answer .docx
Your community includes people from diverse backgrounds. Answer .docxhyacinthshackley2629
 
Your Communications Plan Please respond to the following.docx
Your Communications Plan Please respond to the following.docxYour Communications Plan Please respond to the following.docx
Your Communications Plan Please respond to the following.docxhyacinthshackley2629
 
Your Communication InvestigationFor your mission after reading y.docx
Your Communication InvestigationFor your mission after reading y.docxYour Communication InvestigationFor your mission after reading y.docx
Your Communication InvestigationFor your mission after reading y.docxhyacinthshackley2629
 
Your Communications PlanFirst step Choose a topic. Revi.docx
Your Communications PlanFirst step Choose a topic. Revi.docxYour Communications PlanFirst step Choose a topic. Revi.docx
Your Communications PlanFirst step Choose a topic. Revi.docxhyacinthshackley2629
 
Your coffee franchise cleared for business in both countries (Mexico.docx
Your coffee franchise cleared for business in both countries (Mexico.docxYour coffee franchise cleared for business in both countries (Mexico.docx
Your coffee franchise cleared for business in both countries (Mexico.docxhyacinthshackley2629
 
your classmates by Day 5 to stimulate more meaningful and interactiv.docx
your classmates by Day 5 to stimulate more meaningful and interactiv.docxyour classmates by Day 5 to stimulate more meaningful and interactiv.docx
your classmates by Day 5 to stimulate more meaningful and interactiv.docxhyacinthshackley2629
 
Your Chief Nurse Executive (CNE) recognizes you are pursuing you.docx
Your Chief Nurse Executive (CNE) recognizes you are pursuing you.docxYour Chief Nurse Executive (CNE) recognizes you are pursuing you.docx
Your Chief Nurse Executive (CNE) recognizes you are pursuing you.docxhyacinthshackley2629
 

More from hyacinthshackley2629 (20)

Your company recently reviewed the results of a penetration test.docx
Your company recently reviewed the results of a penetration test.docxYour company recently reviewed the results of a penetration test.docx
Your company recently reviewed the results of a penetration test.docx
 
Your company wants to explore moving much of their data and info.docx
Your company wants to explore moving much of their data and info.docxYour company wants to explore moving much of their data and info.docx
Your company wants to explore moving much of their data and info.docx
 
Your company plans to establish MNE manufacturing operations in Sout.docx
Your company plans to establish MNE manufacturing operations in Sout.docxYour company plans to establish MNE manufacturing operations in Sout.docx
Your company plans to establish MNE manufacturing operations in Sout.docx
 
Your company just purchased a Dell server MD1420 DAS to use to store.docx
Your company just purchased a Dell server MD1420 DAS to use to store.docxYour company just purchased a Dell server MD1420 DAS to use to store.docx
Your company just purchased a Dell server MD1420 DAS to use to store.docx
 
your company is moving to a new HRpayroll system that is sponsored .docx
your company is moving to a new HRpayroll system that is sponsored .docxyour company is moving to a new HRpayroll system that is sponsored .docx
your company is moving to a new HRpayroll system that is sponsored .docx
 
Your company is considering the implementation of a technology s.docx
Your company is considering the implementation of a technology s.docxYour company is considering the implementation of a technology s.docx
Your company is considering the implementation of a technology s.docx
 
Your company is a security service contractor that consults with bus.docx
Your company is a security service contractor that consults with bus.docxYour company is a security service contractor that consults with bus.docx
Your company is a security service contractor that consults with bus.docx
 
Your company has just sent you to a Project Management Conference on.docx
Your company has just sent you to a Project Management Conference on.docxYour company has just sent you to a Project Management Conference on.docx
Your company has just sent you to a Project Management Conference on.docx
 
Your company has designed an information system for a library.  The .docx
Your company has designed an information system for a library.  The .docxYour company has designed an information system for a library.  The .docx
Your company has designed an information system for a library.  The .docx
 
Your company has had embedded HR generalists in business units for t.docx
Your company has had embedded HR generalists in business units for t.docxYour company has had embedded HR generalists in business units for t.docx
Your company has had embedded HR generalists in business units for t.docx
 
Your company You are a new Supply Chain Analyst with the ACME.docx
Your company   You are a new Supply Chain Analyst with the ACME.docxYour company   You are a new Supply Chain Analyst with the ACME.docx
Your company You are a new Supply Chain Analyst with the ACME.docx
 
Your company has asked that you create a survey to collect data .docx
Your company has asked that you create a survey to collect data .docxYour company has asked that you create a survey to collect data .docx
Your company has asked that you create a survey to collect data .docx
 
Your Communications PlanDescriptionA.What is your .docx
Your Communications PlanDescriptionA.What is your .docxYour Communications PlanDescriptionA.What is your .docx
Your Communications PlanDescriptionA.What is your .docx
 
Your community includes people from diverse backgrounds. Answer .docx
Your community includes people from diverse backgrounds. Answer .docxYour community includes people from diverse backgrounds. Answer .docx
Your community includes people from diverse backgrounds. Answer .docx
 
Your Communications Plan Please respond to the following.docx
Your Communications Plan Please respond to the following.docxYour Communications Plan Please respond to the following.docx
Your Communications Plan Please respond to the following.docx
 
Your Communication InvestigationFor your mission after reading y.docx
Your Communication InvestigationFor your mission after reading y.docxYour Communication InvestigationFor your mission after reading y.docx
Your Communication InvestigationFor your mission after reading y.docx
 
Your Communications PlanFirst step Choose a topic. Revi.docx
Your Communications PlanFirst step Choose a topic. Revi.docxYour Communications PlanFirst step Choose a topic. Revi.docx
Your Communications PlanFirst step Choose a topic. Revi.docx
 
Your coffee franchise cleared for business in both countries (Mexico.docx
Your coffee franchise cleared for business in both countries (Mexico.docxYour coffee franchise cleared for business in both countries (Mexico.docx
Your coffee franchise cleared for business in both countries (Mexico.docx
 
your classmates by Day 5 to stimulate more meaningful and interactiv.docx
your classmates by Day 5 to stimulate more meaningful and interactiv.docxyour classmates by Day 5 to stimulate more meaningful and interactiv.docx
your classmates by Day 5 to stimulate more meaningful and interactiv.docx
 
Your Chief Nurse Executive (CNE) recognizes you are pursuing you.docx
Your Chief Nurse Executive (CNE) recognizes you are pursuing you.docxYour Chief Nurse Executive (CNE) recognizes you are pursuing you.docx
Your Chief Nurse Executive (CNE) recognizes you are pursuing you.docx
 

Recently uploaded

CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfchloefrazer622
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajanpragatimahajan3
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpinRaunakKeshri1
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...Sapna Thakur
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesFatimaKhan178732
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
The byproduct of sericulture in different industries.pptx
The byproduct of sericulture in different industries.pptxThe byproduct of sericulture in different industries.pptx
The byproduct of sericulture in different industries.pptxShobhayan Kirtania
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Disha Kariya
 
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...anjaliyadav012327
 

Recently uploaded (20)

CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdf
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajan
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpin
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and Actinides
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
The byproduct of sericulture in different industries.pptx
The byproduct of sericulture in different industries.pptxThe byproduct of sericulture in different industries.pptx
The byproduct of sericulture in different industries.pptx
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..
 
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
 

110111213142.docx

  • 2. Drama Horror Science Fiction Director:Image:Info:Status:Available Rented Not in Stock Rating:Format: Widescreen FullscreenReview: (out of 5)Studio:Runtime: (hh:mm)Region: all_codes_i_learnt_before/cms_part1/admin_addmovie_upload.p hp <?php require_once("connect.php"); $title = $_POST['movie_title']; $year = $_POST['movie_year']; $genre = $_POST['movie_genre']; $director = $_POST['movie_director']; $image = $_POST['movie_image'];//needs script to upload file $info = $_POST['movie_info']; $status = $_POST['movie_status'];
  • 3. $rating = $_POST['movie_rating']; $format = $_POST['movie_format']; $review = $_POST['movie_review']; $studio = $_POST['movie_studio']; $runtime = $_POST['movie_runtime']; $region = $_POST['movie_region']; $thumb = "th_".$image; $qstring = "INSERT INTO tbl_movies VALUES(NULL,'".$title."','".$year."','".$genre."','".$director."', '".$thumb."','".$image."','".$info."','".$status."','".$rating."','".$f ormat."','".$review."','".$studio."','".$runtime."','".$region."')"; //Punctuation mark is very important in this area. ,'".$variable name."' $insert = mysql_query($qstring); header("location: admin_add_movie_start.php");//all these code is to add data to the database ?>
  • 4. all_codes_i_learnt_before/cms_part1/connect.php <?php mysql_connect("localhost","root",""); mysql_select_db("movie_db"); ?> all_codes_i_learnt_before/cms_part1/db_movies.sql -- phpMyAdmin SQL Dump -- version 3.2.4 -- http://www.phpmyadmin.net -- -- Host: localhost -- Generation Time: Feb 15, 2010 at 04:00 PM -- Server version: 5.1.37 -- PHP Version: 5.2.11 SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; /*!40101 SET @[email protected]@CHARACTER_SET_CLIENT */; /*!40101 SET @[email protected]@CHARACTER_SET_RESULTS */; /*!40101 SET @[email protected]@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; -- -- Database: 'db_dvdsite' -- -- --------------------------------------------------------
  • 5. -- -- Table structure for table 'tbl_movies' -- CREATE TABLE tbl_movies ( movie_id smallint(4) unsigned NOT NULL AUTO_INCREMENT, movie_title varchar(150) NOT NULL, movie_year year(4) NOT NULL, movie_genre varchar(50) NOT NULL, movie_director varchar(100) NOT NULL, movie_thumb varchar(100) NOT NULL, movie_image varchar(100) NOT NULL, movie_info text NOT NULL, movie_status varchar(20) NOT NULL, movie_rating varchar(6) NOT NULL, movie_format varchar(20) NOT NULL, movie_review int(4) DEFAULT NULL, movie_studio varchar(120) NOT NULL, movie_runtime varchar(25) DEFAULT NULL, movie_region varchar(2) DEFAULT NULL, PRIMARY KEY (movie_id) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table 'tbl_movies' -- INSERT INTO tbl_movies VALUES(1, 'Dr. Strangelove', 1960, 'Comedy', 'Kubrick', 'strangeloveth.jpg', 'strangelove.jpg', 'Arguably the greatest black comedy ever made, Stanley Kubrick''s cold-war classic is the ultimate satire of the nuclear age. Dr. Strangelove is a perfect spoof of political and military insanity, beginning when General Jack D. Ripper (Sterling Hayden), a maniacal warrior obsessed with "the purity of precious bodily fluids," mounts his singular campaign against
  • 6. Communism by ordering a squadron of B-52 bombers to attack the Soviet Union. The Soviets counter the threat with a so- called "Doomsday Device," and the world hangs in the balance while the U.S. president (Peter Sellers) engages in hilarious hot-line negotiations with his Soviet counterpart.', 'Rented', 'PG-13', 'Widescreen', 4, 'Warner Brothers', '172 Minutes', '1'); INSERT INTO tbl_movies VALUES(2, 'Blue Velvet', 1986, 'Drama', 'Lynch', 'velvetth.jpg', 'velvet.jpg', 'A man returns to his home town after being away and discovers a severed human ear in a field. Not satisfied with the police''s pace, he and the police detective''s daughter carry out their own investigation. The object of his investigation turns out to be a beautiful and mysterious woman involved with a violent and perversely evil man.', 'Available', 'R', 'Widescreen', 3, 'New Line', '154 Minutes', '0'); INSERT INTO tbl_movies VALUES(3, 'Mulholland Drive', 2001, 'Drama', 'Lynch', 'mulhollandth.jpg', 'mulholland.jpg', 'Pandora couldn''t resist opening the forbidden box containing all the delusions of mankind, and let''s just say David Lynch, in Mulholland Drive, indulges a similar impulse. Employing a familiar film noir atmosphere to unravel, as he coyly puts it, "a love story in the city of dreams," Lynch establishes a foreboding but playful narrative in the film''s first half before subsuming all of Los Angeles and its corrupt ambitions into his voyeuristic universe of desire. Identities exchange, amnesia proliferates, and nightmare visions are induced, but not before we''ve become enthralled by the film''s two main characters: the dazed and sullen femme fatale, Rita (Laura Elena Harring), and the pert blonde just-arrived from Ontario (played exquisitely by Naomi Watts) who decides to help Rita regain her memory. Triggered by a rapturous Spanish-language version of Roy Orbison''s "Crying," Lynch''s best film since Blue Velvet splits glowingly into two equally compelling parts.', 'Rented', 'R', 'Fullscreen', 4, 'New Line', '173 Minutes', '1'); INSERT INTO tbl_movies VALUES(4, 'Eraserhead', 1977, 'Science Fiction', 'Lynch', 'eraserheadth.jpg', 'eraserhead.jpg', 'Is
  • 7. it a nightmare or an actual view of a post-apocalyptic world? Set in an industrial town in which giant machines are constantly working, spewing smoke, and making noise that is inescapable, Henry Spencer lives in a building that, like all the others, appears to be abandoned. The lights flicker on and off, he has bowls of water in his dresser drawers, and for his only diversion he watches and listens to the Lady in the Radiator sing about finding happiness in heaven. Henry has a girlfriend, Mary X, who has frequent spastic fits. Mary gives birth to Henry''s child, a frightening looking mutant, which leads to the injection of all sorts of sexual imagery into the depressive and chaotic mix.', 'Available', 'PG-13', 'Widescreen', 3, 'Paramount', '98 Minutes', '1'); INSERT INTO tbl_movies VALUES(5, 'Seven Samurai', 1954, 'Action', 'Kurosawa', 'samuraith.jpg', 'samurai.jpg', 'Hailed as the greatest film in the history of Japanese cinema, Seven Samurai is director Akira Kurosawa''s undisputed masterpiece. Arguably the greatest of all jidai-gecki (or historical swordplay films), Kurosawa''s classic 1954 action drama has never been surpassed in terms of sheer power of emotion, kinetic energy, and dynamic character development. The story is set during the civil unrest of 16th-century Japan, as the cowering residents of a small farming village are seeking protection against seasonal attacks by a band of marauding bandits. Offering mere handfuls of rice as payment, they hire seven unemployed "ronin" (masterless samurai), including a boastful swordsman (Toshiro Mifune) who is actually a peasant farmer''s son, desperately seeking glory, acceptance, and revenge against those who destroyed his family. Led by the calmly strategic Kambei (Takashi Shimura, star of Kurosawa''s previous classic, Ikiru), the samurai form mutual bonds of honor and respect, but remain distant from the villagers, knowing that their assignment may prove to be fatal.', 'Available', 'PG-13', 'Widescreen', 5, 'Toho', '183 Minutes', '0'); INSERT INTO tbl_movies VALUES(6, 'Throne of Blood', 1961, 'Drama', 'Kurosawa', 'throneth.jpg', 'throne.jpg', 'One of the
  • 8. most celebrated screen adaptations of Shakespeare into film, Akira Kurosawaís Throne of Blood re-imagines Macbeth in feudal Japan. Starring Kurosawaís longtime collaborator Toshiro Mifune and the legendary Isuzu Yamada as his ruthless wife, the film tells of a valiant warriorís savage rise to power and his ignominious fall. With Throne of Blood, Kurosawa fuses one of Shakespeareís greatest tragedies with the formal elements of Japanese Noh theater to make a Macbeth that is all his ownóa classic tale of ambition and duplicity set against a ghostly landscape of fog and inescapable doom.', 'Rented', 'PG- 13', 'Widescreen', 5, 'Toho', '212 Minutes', '0'); INSERT INTO tbl_movies VALUES(7, 'High and Low', 1963, 'Drama', 'Kurosawa', 'highlowth.jpg', 'highlow.jpg', 'Although best known for his samurai classics, Japanese master filmmaker Akira Kurosawa proved himself equally adept at contemporary dramas and thrillers, and 1962''s High and Low offers a powerful showcase for Kurosawa''s versatile skill. The great Toshiro Mifune stars as a wealthy industrialist who has just raised a large sum of money to execute his planned takeover of a successful shoe manufacturer. Fate intervenes when he receives a phone call informing him that his son has been kidnapped, and by unfortunate coincidence the ransom demand is nearly equivalent to the amount Mifune has raised for his corporate coup. A philosophical dilemma emerges when it is revealed that the executive''s son is safe, and that it is actually his chauffeur''s son who has been taken. What follows is both a tense detective thriller, as the police attempt to track down the kidnapper, and a compelling illustration of class division in Japan--the "high and low" of the title.', 'Available', 'PG-13', 'Fullscreen', 4, 'Toho', '132 Minutes', '0'); INSERT INTO tbl_movies VALUES(8, 'Female Trouble', 1974, 'Comedy', 'Waters', 'femaleth.jpg', 'female.jpg', 'John Waters expands the definition of female trouble in this mutant tribute to good-girl-gone-bad drive-in melodramas. The girl is, of course, cross-dressing cult icon Divine, Waters''s plus-sized muse. Divine is at her most gleefully outrageous as teenage brat Dawn
  • 9. Davenport, who runs away from home and into a life of wanton hedonism all because she didn''t get cha-cha heels for Christmas. Almost immediately she''s molested by a sleazy motorcycle thug (also played by Divine--is this Waters''s idea of "love thyself"?), but she doesn''t let motherhood interfere with her plans of stardom and turns herself into an unlikely fashion statement in an apocalyptic fashion show. Waters''s fourth feature, a follow-up to the midnight movie hit Pink Flamingos, is just as cinematically primitive and even more gleefully vulgar, right down to the electric climax of Dawn''s road to everlasting fame.', 'Rented', 'R', 'Fullscreen', 3, 'United Artists', '122 Minutes', '1'); INSERT INTO tbl_movies VALUES(9, 'The Godfather', 1972, 'Drama', 'Coppola', 'godfatherth.jpg', 'godfather.jpg', 'Generally acknowledged as a bona fide classic, this Francis Ford Coppola film is one of those rare experiences that feels perfectly right from beginning to end--almost as if everyone involved had been born to participate in it. Based on Mario Puzo''s bestselling novel about a Mafia dynasty, Coppola''s Godfather extracted and enhanced the most universal themes of immigrant experience in America: the plotting-out of hopes and dreams for one''s successors, the raising of children to carry on the good work, etc. In the midst of generational strife during the Vietnam years, the film somehow struck a chord with a nation fascinated by the metamorphosis of a rebellious son (Al Pacino) into the keeper of his father''s dream. Marlon Brando played against Puzo''s own conception of patriarch Vito Corleone, and time has certainly proven the actor correct. The rest of the cast, particularly James Caan, John Cazale, and Robert Duvall as the rest of Vito''s male brood--all coping with how to take the mantle of responsibility from their father--is seamless and wonderful.', 'Available', 'PG-13', 'Widescreen', 5, 'Paramount', '176 Minutes', '1'); INSERT INTO tbl_movies VALUES(10, 'Alien', 1979, 'Science Fiction', 'Scott', 'alienth.jpg', 'alien.jpg', 'The terror begins when the crew of a spaceship investigates a transmission from a
  • 10. desolate planet, and discovers a life form that is perfectly evolved to annihilate mankind. One by one, each crew member is slain until only Ripley is left, leading to an explosive conclusion that sets the stage for its stunning sequel, "Aliens."', 'On Order', 'PG-13', 'Fullscreen', 4, 'New Line', '134 Minutes', '1'); INSERT INTO tbl_movies VALUES(11, 'Aliens', 1986, 'Science Fiction', 'Cameron', 'aliensth.jpg', 'aliens.jpg', 'In this action- packed sequel to Alien, Sigourney Weaver returns as Ripley, the only survivor from mankind''s first encounter with the monstrous Alien. Her account of the Alien and the fate of her crew are received with skepticism - until the mysterious disappearance of colonists on LV-426 leads her to join a team of high-tech colonial marines sent in to investigate. Personally supervised by director James Cameron, this special edition includes scenes eliminated prior to the film''s 1986 release which broaden the narrative scope and enrich the emotional impact of the film.', 'Available', 'PG-13', 'Widescreen', 4, 'Warner Brothers', '136 Minutes', '1'); INSERT INTO tbl_movies VALUES(12, 'The Texas Chainsaw Massacre', 1974, 'Horror', 'Hooper', 'chainsawth.jpg', 'chainsaw.jpg', 'It has been called grisly, sick, and perverse as well as raw, unshakeable, and the movie that redefined horror. It was attacked by churches, banned by governments, and acclaimed by only the bravest of critics. It stunned audiences worldwide and set a new standard in movie terror forever. In 1974, writer-producer-director Tobe Hooper unleashed this dark, visionary tale about a group of five young friends who face a nightmare of torment at the hands of a depraved Texas clan. Today it remains unequaled as a landmark of outlaw filmmaking and unparalleled in its impact as perhaps the most frightening motion picture ever made.', 'Available', 'R', 'Fullscreen', 4, 'United Artists', '94 Minutes', '1'); INSERT INTO tbl_movies VALUES(13, 'Audition', 1999, 'Horror', 'Miike', 'auditionth.jpg', 'audition.jpg', 'If you want the full sledgehammer-to-the-stomach effect of Audition, stop
  • 11. reading this review now. Just watch it and take the consequences. At first glance, Takashi Miike''s jack in the box of a movie works like a romantic comedy: amiable widower Shigeharu Aoyama (Ryo Ishibashi) decides it''s time to find a new wife, and a friend suggests holding a fake audition to find the right girl. It soon becomes clear that there is something wrong with Aoyama''s choice. This is no ordinary Fatal Attraction-style thriller, however; Audition slowly and carefully builds into a wrenching exploration of both deep male fears and the stereotype of the cute, submissive Japanese woman. Audition is by no means an easy movie to watch--even hardcore horror fans may have trouble--but it will stay with you for a long, long time.', 'Available', 'NC-17', 'Fullscreen', 2, 'Toho', '94 Minutes', '0'); INSERT INTO tbl_movies VALUES(14, 'Ratatouille', 2007, 'Comedy', 'Bird', 'ratatouilleth.jpg', 'ratatouille.jpg', 'One key point: if you can get over the natural gag reflex of seeing hundreds of rodents swarming over a restaurant kitchen, you will be free to enjoy the glory of Ratatouille, a delectable Pixar hit. Our hero is Remy, a French rat (voiced by Patton Oswalt) with a cultivated palate, who rises from his humble beginnings to become head chef at a Paris restaurant. How this happens is the stuff of Pixar magic, that ineffable blend of headlong comedy, seamless technology, and wonder (in the latter department, this movie''s views of nighttime Paris are on a par with French cinema at its most lyrical). Director Brad Bird (The Incredibles) doesn''t quite keep all his spinning plates in the air, but the gags are great and the animation amazingly expressive-- Remy''s shrugs and nods are nimbler than many flesh-and-blood actors can manage. Refreshingly, the movie''s characters aren''t celebrity-reliant, with the most recognizable voice coming from Peter O''Toole''s snide food critic.', 'Rented', 'G', 'Widescreen', 5, 'Pixar', '124 Minutes', '1'); INSERT INTO tbl_movies VALUES(15, 'The Incredibles', 2004, 'Comedy', 'Bird', 'incrediblesth.jpg', 'incredibles.jpg', 'After creating the last great traditionally animated film of the 20th
  • 12. century, The Iron Giant, filmmaker Brad Bird joined top-drawer studio Pixar to create this exciting, completely entertaining computer-animated film. Bird gives us a family of "supers," a brood of five with special powers desperately trying to fit in with the 9-to-5 suburban lifestyle. Of course, in a more innocent world, Bob and Helen Parr were superheroes, Mr. Incredible and Elastigirl. But blasted lawsuits and public disapproval forced them and other supers to go incognito, making it even tougher for their school-age kids, the shy Violet and the aptly named Dash. When a stranger named Mirage (voiced by Elizabeth Pena) secretly recruits Bob for a potential mission, the old glory days spin in his head, even if his body is a bit too plump for his old super suit.', 'Available', 'G', 'Widescreen', 5, 'Pixar', '122 Minutes', '1'); INSERT INTO tbl_movies VALUES(16, 'Night of the Living Dead', 1968, 'Horror', 'Romero', 'deadth.jpg', 'dead.jpg', 'Night of the Living Dead is a seminal 1968 black-and-white independent horror film directed by George A. Romero. Early drafts of the script were titled Monster Flick, but it was known as Night of Anubis and Night of the Flesh Eaters during production. The film stars Duane Jones as Ben and Judith O''Dea as Barbra. The plot revolves around the mysterious reanimation of the dead and the efforts of Ben, Barbra and five others to survive the night while trapped in a rural Pennsylvania farmhouse. Romero produced the film on the small budget of $114,000, but after a decade of theatrical re-releases it had grossed an estimated $12 million in the United States and $30 million internationally.', 'Available', 'PG-13', 'Fullscreen', 4, 'Warner Brothers', '85 Minutes', '1'); INSERT INTO tbl_movies VALUES(17, 'Suspiria', 1977, 'Horror', 'Argento', 'suspiriath.jpg', 'suspiria.jpg', 'Outside of devoted cult audiences, many Americans have yet to discover the extremely stylish, relentlessly terrifying Italian horror genre, or the films of its talented virtuoso, Dario Argento. Suspiria, part one of a still-uncompleted trilogy (the luminously empty Inferno was the second), is considered his masterpiece by
  • 13. Argento devotees but also doubles as a perfect starting point for those unfamiliar with the director or his genre. The convoluted plot follows an American dancer (Jessica Harper) from her arrival at a European ballet school to her discovery that it''s actually a witches coven; but, really, don''t worry about that too much. Argento makes narrative subservient to technique, preferring instead to assault the senses and nervous system with mood, atmosphere, illusory gore, garish set production, a menacing camera, and perhaps the creepiest score ever created for a movie. It''s essentially a series of effectively unsettling set pieces--a raging storm that Harper should have taken for an omen, and a blind man attacked by his own dog are just two examples--strung together on a skeleton structure. But once you''ve seen it, you''ll never forget it.', 'Available', 'R', 'Widescreen', 4, 'Italifilm Studios', '134 Minutes', '0'); INSERT INTO tbl_movies VALUES(18, 'Casino', 1995, 'Drama', 'Scorsese', 'casinoth.jpg', 'casino.jpg', 'This Martin Scorsese film depicts the Janus-like quality of Las Vegas--it has a glittering, glamorous face, as well as a brutal, cruel one. Ace Rothstein and Nicky Santoro, mobsters who move to Las Vegas to make their mark, live and work in this paradoxical world. Seen through their eyes, each as a foil to the other, the details of mob involvement in the casinos of the 1970''s and ''80''s are revealed. Ace is the smooth operator of the Tangiers casino, while Nicky is his boyhood friend and tough strongman, robbing and shaking down the locals. However, they each have a tragic flaw--Ace falls in love with a hustler, Ginger, and Nicky falls into an ever-deepening spiral of drugs and violence.', 'Rented', 'R', 'Widescreen', 3, 'Warner Brothers', '2 hours 10 Minutes', '1'); INSERT INTO tbl_movies VALUES(24, 'A Clockwork Orange', 1971, 'Science Fiction', '', 'thclockwork.jpg', 'clockwork.jpg', 'classic sf movie', 'Available', 'R', 'Widescreen', 5, 'Warners', '2:22', '1');
  • 14. all_codes_i_learnt_before/cms_part1/dvdsite.css body { font-family:Arial, Helvetica, sans-serif; font-size: 12px; } tr { padding-right:3px; margin:12px; border:0px; } input, select,textarea { font-family:Arial, Helvetica, sans-serif; font-size: 12px; background-color:#CCCCCC; } #movieimage { font-family:Arial, Helvetica, sans-serif; font-size: 12px; background-color:#CCCCCC; } #wrapper { position:relative; width:800px; margin:0px auto; } #header { font-size:18px; width:300px; height:50px; float:left; } #search { width:250px; float:left; } #sort {
  • 15. width:250px; float:left; } #maincontent { width:800px; clear:left; } #footer { font-size:10px; text-align:center; width:800px; height:15px; margin-top:10px; } #image { position:absolute; left:10px; top:10px; width:200px; height:300px; } #title { position:absolute; left:250px; top:10px; font-size:18px; width:200px; height:20px; } #info { position:absolute; left:250px; top:50px; font-size:12px; width:400px; height:400px;
  • 17. tr { padding-right:3px; margin:12px; border:0px; } input, select,textarea { font-family:Arial, Helvetica, sans-serif; font-size: 12px; background-color:#CCCCCC; } #movieimage { font-family:Arial, Helvetica, sans-serif; font-size: 12px; background-color:#CCCCCC; } #wrapper { position:relative; width:800px; margin:0px auto; } #header { font-size:18px; width:300px; height:50px; float:left; } #search { width:250px; float:left; } #sort { width:250px; float:left; } #maincontent { width:800px;
  • 18. clear:left; } #footer { font-size:10px; text-align:center; width:800px; height:15px; margin-top:10px; } #image { position:absolute; left:10px; top:10px; width:200px; height:300px; } #title { position:absolute; left:250px; top:10px; font-size:18px; width:200px; height:20px; } #info { position:absolute; left:250px; top:50px; font-size:12px; width:400px; height:400px; } .dvdtitle { font-size:14px; font-weight:bold; color:#333333;
  • 19. } .hilite { font-style:italic; } all_codes_i_learnt_before/cms_part1/images/eraserhead.jpg all_codes_i_learnt_before/cms_part1/images/female.jpg all_codes_i_learnt_before/cms_part1/images/godfather.jpg all_codes_i_learnt_before/cms_part1/images/highlow.jpg all_codes_i_learnt_before/cms_part1/images/incredibles.jpg all_codes_i_learnt_before/cms_part1/images/labyrinth.jpg all_codes_i_learnt_before/cms_part1/images/mulholland.jpg all_codes_i_learnt_before/cms_part1/images/planetearth.jpg all_codes_i_learnt_before/cms_part1/images/potter5.jpg all_codes_i_learnt_before/cms_part1/images/pulp.jpg all_codes_i_learnt_before/cms_part1/images/ratatouille.jpg all_codes_i_learnt_before/cms_part1/images/reservoir.jpg all_codes_i_learnt_before/cms_part1/images/samurai.jpg all_codes_i_learnt_before/cms_part1/images/strangelove.jpg all_codes_i_learnt_before/cms_part1/images/suspiria.jpg
  • 20. all_codes_i_learnt_before/cms_part1/images/throne.jpg all_codes_i_learnt_before/cms_part1/images/thumbs/.DS_Store all_codes_i_learnt_before/cms_part1/images/thumbs/aliensth.jp g all_codes_i_learnt_before/cms_part1/images/thumbs/alienth.jpg all_codes_i_learnt_before/cms_part1/images/thumbs/auditionth. jpg all_codes_i_learnt_before/cms_part1/images/thumbs/bourneth.j pg all_codes_i_learnt_before/cms_part1/images/thumbs/casinoth.jp g all_codes_i_learnt_before/cms_part1/images/thumbs/chainsawth .jpg all_codes_i_learnt_before/cms_part1/images/thumbs/christmast h.jpg all_codes_i_learnt_before/cms_part1/images/thumbs/deadth.jpg all_codes_i_learnt_before/cms_part1/images/thumbs/eraserheadt h.jpg all_codes_i_learnt_before/cms_part1/images/thumbs/femaleth.jp g all_codes_i_learnt_before/cms_part1/images/thumbs/godfathert h.jpg all_codes_i_learnt_before/cms_part1/images/thumbs/highlowth.
  • 21. jpg all_codes_i_learnt_before/cms_part1/images/thumbs/incredibles th.jpg all_codes_i_learnt_before/cms_part1/images/thumbs/labyrinthth .jpg all_codes_i_learnt_before/cms_part1/images/thumbs/mulholland th.jpg all_codes_i_learnt_before/cms_part1/images/thumbs/planetearth th.jpg all_codes_i_learnt_before/cms_part1/images/thumbs/potterth.jp g all_codes_i_learnt_before/cms_part1/images/thumbs/pulpth.jpg all_codes_i_learnt_before/cms_part1/images/thumbs/ratatouillet h.jpg all_codes_i_learnt_before/cms_part1/images/thumbs/reservoirth .jpg all_codes_i_learnt_before/cms_part1/images/thumbs/samuraith.j pg all_codes_i_learnt_before/cms_part1/images/thumbs/strangelov eth.jpg all_codes_i_learnt_before/cms_part1/images/thumbs/suspiriath.j pg all_codes_i_learnt_before/cms_part1/images/thumbs/thclockwor k.jpg
  • 23. Search: ".$row['movie_title']."".$row['movie_genre']."editdelete " ; //need to be finished. put edit and delete after more } ?> copyright 2009 all rights reserved all_codes_i_learnt_before/cms_part1/moviedetail.php Search: "; ?>
  • 24. back to list all_codes_i_learnt_before/cms_part1/movielist.php DVD Movie List Show By Genre: <choose genre> Action Comedy Drama Horror Science Fiction All Movies Search:
  • 25. ".$row['movie_title']."".$row['movie_genre']."more... "; } ?> copyright 2009 all rights reserved all_codes_i_learnt_before/cms_part2_done/addmovie.php <?php require_once("connect.php"); $title = $_POST['movie_title']; $year = $_POST['movie_year']; $genre = $_POST['movie_genre']; $director = $_POST['movie_director']; $image = $_POST['movie_image']; $info = $_POST['movie_info']; $status = $_POST['movie_status']; $rating = $_POST['movie_rating']; $format = $_POST['movie_format']; $review = $_POST['movie_review']; $studio = $_POST['movie_studio']; $runtime = $_POST['movie_runtime']; $region = $_POST['movie_region']; $thumb = "th_".$image; $qstring = "INSERT INTO tbl_movies VALUES(NULL,'".$title."','".$year."','".$genre."','".$director."', '".$thumb."','".$image."','".$info."','".$status."','".$rating."','".$f
  • 26. ormat."','".$review."','".$studio."','".$runtime."','".$region."')"; $result = mysql_query($qstring); header("Location: admin_add_movie.php"); ?> all_codes_i_learnt_before/cms_part2_done/admin_add_movie.p hp Add a MovieTitle:Year:Genre:Action Comedy Drama Horror Science Fiction Director:Image:Info:Status:Available Rented Not in Stock Rating:Format: Widescreen FullscreenReview: (out of 5)Studio:Runtime: (hh:mm)Region:admin home all_codes_i_learnt_before/cms_part2_done/admin_delete_movie .php <?php require_once("connect.php"); $chuckthis = $_GET['id']; $qstring = "DELETE FROM tbl_movies WHERE movie_id=".$chuckthis; $del = mysql_query($qstring);
  • 27. header("Location: admin_main.php"); ?> all_codes_i_learnt_before/cms_part2_done/admin_edit_movie.p hp Edit a MovieTitle:Year:Genre:Director:Image:Info:Status:Rating:Form at:Review: (out of 5)Studio:Runtime: (hh:mm)Region: all_codes_i_learnt_before/cms_part2_done/admin_login.html Content Management username: password: all_codes_i_learnt_before/cms_part2_done/admin_login.php
  • 28. <?php require_once('connect.php'); $username = $_POST['username']; $password = $_POST['password']; $querystring = "SELECT * FROM tbl_users WHERE user_username='".$username."' AND user_password='".$password."'"; $myquery = mysql_query($querystring); $numrows = mysql_num_rows($myquery); if($numrows==0) { header("Location: admin_login.html"); }else{ session_start(); $row = mysql_fetch_array($myquery); $_SESSION['id'] = $row['user_id']; header("Location: admin_main.php"); } ?> all_codes_i_learnt_before/cms_part2_done/admin_main.php DVD Movie List Show By Genre: <choose genre> Action Comedy Drama Horror Science Fiction All Movies
  • 29. Search: ".$row['movie_title']."".$row['movie_genre']."edit...delete... "; } ?> add a movie copyright 2009 all rights reserved all_codes_i_learnt_before/cms_part2_done/connect.php <?php mysql_connect("localhost:8888","root","root"); mysql_select_db("db_dvds"); ?>
  • 30. all_codes_i_learnt_before/cms_part2_done/db_movies.sql -- phpMyAdmin SQL Dump -- version 3.2.4 -- http://www.phpmyadmin.net -- -- Host: localhost -- Generation Time: Feb 15, 2010 at 04:00 PM -- Server version: 5.1.37 -- PHP Version: 5.2.11 SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; /*!40101 SET @[email protected]@CHARACTER_SET_CLIENT */; /*!40101 SET @[email protected]@CHARACTER_SET_RESULTS */; /*!40101 SET @[email protected]@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; -- -- Database: 'db_dvdsite' -- -- -------------------------------------------------------- -- -- Table structure for table 'tbl_movies' -- CREATE TABLE tbl_movies ( movie_id smallint(4) unsigned NOT NULL AUTO_INCREMENT, movie_title varchar(150) NOT NULL, movie_year year(4) NOT NULL,
  • 31. movie_genre varchar(50) NOT NULL, movie_director varchar(100) NOT NULL, movie_thumb varchar(100) NOT NULL, movie_image varchar(100) NOT NULL, movie_info text NOT NULL, movie_status varchar(20) NOT NULL, movie_rating varchar(6) NOT NULL, movie_format varchar(20) NOT NULL, movie_review int(4) DEFAULT NULL, movie_studio varchar(120) NOT NULL, movie_runtime varchar(25) DEFAULT NULL, movie_region varchar(2) DEFAULT NULL, PRIMARY KEY (movie_id) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table 'tbl_movies' -- INSERT INTO tbl_movies VALUES(1, 'Dr. Strangelove', 1960, 'Comedy', 'Kubrick', 'strangeloveth.jpg', 'strangelove.jpg', 'Arguably the greatest black comedy ever made, Stanley Kubrick''s cold-war classic is the ultimate satire of the nuclear age. Dr. Strangelove is a perfect spoof of political and military insanity, beginning when General Jack D. Ripper (Sterling Hayden), a maniacal warrior obsessed with "the purity of precious bodily fluids," mounts his singular campaign against Communism by ordering a squadron of B-52 bombers to attack the Soviet Union. The Soviets counter the threat with a so- called "Doomsday Device," and the world hangs in the balance while the U.S. president (Peter Sellers) engages in hilarious hot-line negotiations with his Soviet counterpart.', 'Rented', 'PG-13', 'Widescreen', 4, 'Warner Brothers', '172 Minutes', '1'); INSERT INTO tbl_movies VALUES(2, 'Blue Velvet', 1986, 'Drama', 'Lynch', 'velvetth.jpg', 'velvet.jpg', 'A man returns to his home town after being away and discovers a severed human
  • 32. ear in a field. Not satisfied with the police''s pace, he and the police detective''s daughter carry out their own investigation. The object of his investigation turns out to be a beautiful and mysterious woman involved with a violent and perversely evil man.', 'Available', 'R', 'Widescreen', 3, 'New Line', '154 Minutes', '0'); INSERT INTO tbl_movies VALUES(3, 'Mulholland Drive', 2001, 'Drama', 'Lynch', 'mulhollandth.jpg', 'mulholland.jpg', 'Pandora couldn''t resist opening the forbidden box containing all the delusions of mankind, and let''s just say David Lynch, in Mulholland Drive, indulges a similar impulse. Employing a familiar film noir atmosphere to unravel, as he coyly puts it, "a love story in the city of dreams," Lynch establishes a foreboding but playful narrative in the film''s first half before subsuming all of Los Angeles and its corrupt ambitions into his voyeuristic universe of desire. Identities exchange, amnesia proliferates, and nightmare visions are induced, but not before we''ve become enthralled by the film''s two main characters: the dazed and sullen femme fatale, Rita (Laura Elena Harring), and the pert blonde just-arrived from Ontario (played exquisitely by Naomi Watts) who decides to help Rita regain her memory. Triggered by a rapturous Spanish-language version of Roy Orbison''s "Crying," Lynch''s best film since Blue Velvet splits glowingly into two equally compelling parts.', 'Rented', 'R', 'Fullscreen', 4, 'New Line', '173 Minutes', '1'); INSERT INTO tbl_movies VALUES(4, 'Eraserhead', 1977, 'Science Fiction', 'Lynch', 'eraserheadth.jpg', 'eraserhead.jpg', 'Is it a nightmare or an actual view of a post-apocalyptic world? Set in an industrial town in which giant machines are constantly working, spewing smoke, and making noise that is inescapable, Henry Spencer lives in a building that, like all the others, appears to be abandoned. The lights flicker on and off, he has bowls of water in his dresser drawers, and for his only diversion he watches and listens to the Lady in the Radiator sing about finding happiness in heaven. Henry has a girlfriend, Mary X, who has frequent spastic fits. Mary gives birth to Henry''s child,
  • 33. a frightening looking mutant, which leads to the injection of all sorts of sexual imagery into the depressive and chaotic mix.', 'Available', 'PG-13', 'Widescreen', 3, 'Paramount', '98 Minutes', '1'); INSERT INTO tbl_movies VALUES(5, 'Seven Samurai', 1954, 'Action', 'Kurosawa', 'samuraith.jpg', 'samurai.jpg', 'Hailed as the greatest film in the history of Japanese cinema, Seven Samurai is director Akira Kurosawa''s undisputed masterpiece. Arguably the greatest of all jidai-gecki (or historical swordplay films), Kurosawa''s classic 1954 action drama has never been surpassed in terms of sheer power of emotion, kinetic energy, and dynamic character development. The story is set during the civil unrest of 16th-century Japan, as the cowering residents of a small farming village are seeking protection against seasonal attacks by a band of marauding bandits. Offering mere handfuls of rice as payment, they hire seven unemployed "ronin" (masterless samurai), including a boastful swordsman (Toshiro Mifune) who is actually a peasant farmer''s son, desperately seeking glory, acceptance, and revenge against those who destroyed his family. Led by the calmly strategic Kambei (Takashi Shimura, star of Kurosawa''s previous classic, Ikiru), the samurai form mutual bonds of honor and respect, but remain distant from the villagers, knowing that their assignment may prove to be fatal.', 'Available', 'PG-13', 'Widescreen', 5, 'Toho', '183 Minutes', '0'); INSERT INTO tbl_movies VALUES(6, 'Throne of Blood', 1961, 'Drama', 'Kurosawa', 'throneth.jpg', 'throne.jpg', 'One of the most celebrated screen adaptations of Shakespeare into film, Akira Kurosawaís Throne of Blood re-imagines Macbeth in feudal Japan. Starring Kurosawaís longtime collaborator Toshiro Mifune and the legendary Isuzu Yamada as his ruthless wife, the film tells of a valiant warriorís savage rise to power and his ignominious fall. With Throne of Blood, Kurosawa fuses one of Shakespeareís greatest tragedies with the formal elements of Japanese Noh theater to make a Macbeth that is all his ownóa classic tale of ambition and duplicity set against a
  • 34. ghostly landscape of fog and inescapable doom.', 'Rented', 'PG- 13', 'Widescreen', 5, 'Toho', '212 Minutes', '0'); INSERT INTO tbl_movies VALUES(7, 'High and Low', 1963, 'Drama', 'Kurosawa', 'highlowth.jpg', 'highlow.jpg', 'Although best known for his samurai classics, Japanese master filmmaker Akira Kurosawa proved himself equally adept at contemporary dramas and thrillers, and 1962''s High and Low offers a powerful showcase for Kurosawa''s versatile skill. The great Toshiro Mifune stars as a wealthy industrialist who has just raised a large sum of money to execute his planned takeover of a successful shoe manufacturer. Fate intervenes when he receives a phone call informing him that his son has been kidnapped, and by unfortunate coincidence the ransom demand is nearly equivalent to the amount Mifune has raised for his corporate coup. A philosophical dilemma emerges when it is revealed that the executive''s son is safe, and that it is actually his chauffeur''s son who has been taken. What follows is both a tense detective thriller, as the police attempt to track down the kidnapper, and a compelling illustration of class division in Japan--the "high and low" of the title.', 'Available', 'PG-13', 'Fullscreen', 4, 'Toho', '132 Minutes', '0'); INSERT INTO tbl_movies VALUES(8, 'Female Trouble', 1974, 'Comedy', 'Waters', 'femaleth.jpg', 'female.jpg', 'John Waters expands the definition of female trouble in this mutant tribute to good-girl-gone-bad drive-in melodramas. The girl is, of course, cross-dressing cult icon Divine, Waters''s plus-sized muse. Divine is at her most gleefully outrageous as teenage brat Dawn Davenport, who runs away from home and into a life of wanton hedonism all because she didn''t get cha-cha heels for Christmas. Almost immediately she''s molested by a sleazy motorcycle thug (also played by Divine--is this Waters''s idea of "love thyself"?), but she doesn''t let motherhood interfere with her plans of stardom and turns herself into an unlikely fashion statement in an apocalyptic fashion show. Waters''s fourth feature, a follow-up to the midnight movie hit Pink Flamingos, is just as cinematically primitive and even more gleefully
  • 35. vulgar, right down to the electric climax of Dawn''s road to everlasting fame.', 'Rented', 'R', 'Fullscreen', 3, 'United Artists', '122 Minutes', '1'); INSERT INTO tbl_movies VALUES(9, 'The Godfather', 1972, 'Drama', 'Coppola', 'godfatherth.jpg', 'godfather.jpg', 'Generally acknowledged as a bona fide classic, this Francis Ford Coppola film is one of those rare experiences that feels perfectly right from beginning to end--almost as if everyone involved had been born to participate in it. Based on Mario Puzo''s bestselling novel about a Mafia dynasty, Coppola''s Godfather extracted and enhanced the most universal themes of immigrant experience in America: the plotting-out of hopes and dreams for one''s successors, the raising of children to carry on the good work, etc. In the midst of generational strife during the Vietnam years, the film somehow struck a chord with a nation fascinated by the metamorphosis of a rebellious son (Al Pacino) into the keeper of his father''s dream. Marlon Brando played against Puzo''s own conception of patriarch Vito Corleone, and time has certainly proven the actor correct. The rest of the cast, particularly James Caan, John Cazale, and Robert Duvall as the rest of Vito''s male brood--all coping with how to take the mantle of responsibility from their father--is seamless and wonderful.', 'Available', 'PG-13', 'Widescreen', 5, 'Paramount', '176 Minutes', '1'); INSERT INTO tbl_movies VALUES(10, 'Alien', 1979, 'Science Fiction', 'Scott', 'alienth.jpg', 'alien.jpg', 'The terror begins when the crew of a spaceship investigates a transmission from a desolate planet, and discovers a life form that is perfectly evolved to annihilate mankind. One by one, each crew member is slain until only Ripley is left, leading to an explosive conclusion that sets the stage for its stunning sequel, "Aliens."', 'On Order', 'PG-13', 'Fullscreen', 4, 'New Line', '134 Minutes', '1'); INSERT INTO tbl_movies VALUES(11, 'Aliens', 1986, 'Science Fiction', 'Cameron', 'aliensth.jpg', 'aliens.jpg', 'In this action- packed sequel to Alien, Sigourney Weaver returns as Ripley, the
  • 36. only survivor from mankind''s first encounter with the monstrous Alien. Her account of the Alien and the fate of her crew are received with skepticism - until the mysterious disappearance of colonists on LV-426 leads her to join a team of high-tech colonial marines sent in to investigate. Personally supervised by director James Cameron, this special edition includes scenes eliminated prior to the film''s 1986 release which broaden the narrative scope and enrich the emotional impact of the film.', 'Available', 'PG-13', 'Widescreen', 4, 'Warner Brothers', '136 Minutes', '1'); INSERT INTO tbl_movies VALUES(12, 'The Texas Chainsaw Massacre', 1974, 'Horror', 'Hooper', 'chainsawth.jpg', 'chainsaw.jpg', 'It has been called grisly, sick, and perverse as well as raw, unshakeable, and the movie that redefined horror. It was attacked by churches, banned by governments, and acclaimed by only the bravest of critics. It stunned audiences worldwide and set a new standard in movie terror forever. In 1974, writer-producer-director Tobe Hooper unleashed this dark, visionary tale about a group of five young friends who face a nightmare of torment at the hands of a depraved Texas clan. Today it remains unequaled as a landmark of outlaw filmmaking and unparalleled in its impact as perhaps the most frightening motion picture ever made.', 'Available', 'R', 'Fullscreen', 4, 'United Artists', '94 Minutes', '1'); INSERT INTO tbl_movies VALUES(13, 'Audition', 1999, 'Horror', 'Miike', 'auditionth.jpg', 'audition.jpg', 'If you want the full sledgehammer-to-the-stomach effect of Audition, stop reading this review now. Just watch it and take the consequences. At first glance, Takashi Miike''s jack in the box of a movie works like a romantic comedy: amiable widower Shigeharu Aoyama (Ryo Ishibashi) decides it''s time to find a new wife, and a friend suggests holding a fake audition to find the right girl. It soon becomes clear that there is something wrong with Aoyama''s choice. This is no ordinary Fatal Attraction-style thriller, however; Audition slowly and carefully builds into a wrenching exploration of both deep male fears and
  • 37. the stereotype of the cute, submissive Japanese woman. Audition is by no means an easy movie to watch--even hardcore horror fans may have trouble--but it will stay with you for a long, long time.', 'Available', 'NC-17', 'Fullscreen', 2, 'Toho', '94 Minutes', '0'); INSERT INTO tbl_movies VALUES(14, 'Ratatouille', 2007, 'Comedy', 'Bird', 'ratatouilleth.jpg', 'ratatouille.jpg', 'One key point: if you can get over the natural gag reflex of seeing hundreds of rodents swarming over a restaurant kitchen, you will be free to enjoy the glory of Ratatouille, a delectable Pixar hit. Our hero is Remy, a French rat (voiced by Patton Oswalt) with a cultivated palate, who rises from his humble beginnings to become head chef at a Paris restaurant. How this happens is the stuff of Pixar magic, that ineffable blend of headlong comedy, seamless technology, and wonder (in the latter department, this movie''s views of nighttime Paris are on a par with French cinema at its most lyrical). Director Brad Bird (The Incredibles) doesn''t quite keep all his spinning plates in the air, but the gags are great and the animation amazingly expressive-- Remy''s shrugs and nods are nimbler than many flesh-and-blood actors can manage. Refreshingly, the movie''s characters aren''t celebrity-reliant, with the most recognizable voice coming from Peter O''Toole''s snide food critic.', 'Rented', 'G', 'Widescreen', 5, 'Pixar', '124 Minutes', '1'); INSERT INTO tbl_movies VALUES(15, 'The Incredibles', 2004, 'Comedy', 'Bird', 'incrediblesth.jpg', 'incredibles.jpg', 'After creating the last great traditionally animated film of the 20th century, The Iron Giant, filmmaker Brad Bird joined top-drawer studio Pixar to create this exciting, completely entertaining computer-animated film. Bird gives us a family of "supers," a brood of five with special powers desperately trying to fit in with the 9-to-5 suburban lifestyle. Of course, in a more innocent world, Bob and Helen Parr were superheroes, Mr. Incredible and Elastigirl. But blasted lawsuits and public disapproval forced them and other supers to go incognito, making it even tougher for their school-age kids, the shy Violet and the aptly named
  • 38. Dash. When a stranger named Mirage (voiced by Elizabeth Pena) secretly recruits Bob for a potential mission, the old glory days spin in his head, even if his body is a bit too plump for his old super suit.', 'Available', 'G', 'Widescreen', 5, 'Pixar', '122 Minutes', '1'); INSERT INTO tbl_movies VALUES(16, 'Night of the Living Dead', 1968, 'Horror', 'Romero', 'deadth.jpg', 'dead.jpg', 'Night of the Living Dead is a seminal 1968 black-and-white independent horror film directed by George A. Romero. Early drafts of the script were titled Monster Flick, but it was known as Night of Anubis and Night of the Flesh Eaters during production. The film stars Duane Jones as Ben and Judith O''Dea as Barbra. The plot revolves around the mysterious reanimation of the dead and the efforts of Ben, Barbra and five others to survive the night while trapped in a rural Pennsylvania farmhouse. Romero produced the film on the small budget of $114,000, but after a decade of theatrical re-releases it had grossed an estimated $12 million in the United States and $30 million internationally.', 'Available', 'PG-13', 'Fullscreen', 4, 'Warner Brothers', '85 Minutes', '1'); INSERT INTO tbl_movies VALUES(17, 'Suspiria', 1977, 'Horror', 'Argento', 'suspiriath.jpg', 'suspiria.jpg', 'Outside of devoted cult audiences, many Americans have yet to discover the extremely stylish, relentlessly terrifying Italian horror genre, or the films of its talented virtuoso, Dario Argento. Suspiria, part one of a still-uncompleted trilogy (the luminously empty Inferno was the second), is considered his masterpiece by Argento devotees but also doubles as a perfect starting point for those unfamiliar with the director or his genre. The convoluted plot follows an American dancer (Jessica Harper) from her arrival at a European ballet school to her discovery that it''s actually a witches coven; but, really, don''t worry about that too much. Argento makes narrative subservient to technique, preferring instead to assault the senses and nervous system with mood, atmosphere, illusory gore, garish set production, a menacing camera, and perhaps the creepiest score ever created
  • 39. for a movie. It''s essentially a series of effectively unsettling set pieces--a raging storm that Harper should have taken for an omen, and a blind man attacked by his own dog are just two examples--strung together on a skeleton structure. But once you''ve seen it, you''ll never forget it.', 'Available', 'R', 'Widescreen', 4, 'Italifilm Studios', '134 Minutes', '0'); INSERT INTO tbl_movies VALUES(18, 'Casino', 1995, 'Drama', 'Scorsese', 'casinoth.jpg', 'casino.jpg', 'This Martin Scorsese film depicts the Janus-like quality of Las Vegas--it has a glittering, glamorous face, as well as a brutal, cruel one. Ace Rothstein and Nicky Santoro, mobsters who move to Las Vegas to make their mark, live and work in this paradoxical world. Seen through their eyes, each as a foil to the other, the details of mob involvement in the casinos of the 1970''s and ''80''s are revealed. Ace is the smooth operator of the Tangiers casino, while Nicky is his boyhood friend and tough strongman, robbing and shaking down the locals. However, they each have a tragic flaw--Ace falls in love with a hustler, Ginger, and Nicky falls into an ever-deepening spiral of drugs and violence.', 'Rented', 'R', 'Widescreen', 3, 'Warner Brothers', '2 hours 10 Minutes', '1'); INSERT INTO tbl_movies VALUES(24, 'A Clockwork Orange', 1971, 'Science Fiction', '', 'thclockwork.jpg', 'clockwork.jpg', 'classic sf movie', 'Available', 'R', 'Widescreen', 5, 'Warners', '2:22', '1'); all_codes_i_learnt_before/cms_part2_done/dvdsite.css body { font-family:Arial, Helvetica, sans-serif; font-size: 12px; } tr { padding-right:3px; margin:12px; border:0px;
  • 40. } input, select,textarea { font-family:Arial, Helvetica, sans-serif; font-size: 12px; background-color:#CCCCCC; } #movieimage { font-family:Arial, Helvetica, sans-serif; font-size: 12px; background-color:#CCCCCC; } #wrapper { position:relative; width:800px; margin:0px auto; } #header { font-size:18px; width:300px; height:50px; float:left; } #search { width:250px; float:left; } #sort { width:250px; float:left; } #maincontent { width:800px; clear:left; } #footer { font-size:10px;
  • 41. text-align:center; width:800px; height:15px; margin-top:10px; } #image { position:absolute; left:10px; top:10px; width:200px; height:300px; } #title { position:absolute; left:250px; top:10px; font-size:18px; width:200px; height:20px; } #info { position:absolute; left:250px; top:50px; font-size:12px; width:400px; height:400px; } .dvdtitle { font-size:14px; font-weight:bold; color:#333333; } .hilite { font-style:italic; }
  • 42. all_codes_i_learnt_before/cms_part2_done/editmovie.php <?php require_once("connect.php"); $editthis = $_GET['id']; //gather form fields $title = $_POST['movie_title']; $year = $_POST['movie_year']; $genre = $_POST['movie_genre']; $director = $_POST['movie_director']; $image = $_POST['movie_image']; $info = $_POST['movie_info']; $status = $_POST['movie_status']; $rating = $_POST['movie_rating']; $format = $_POST['movie_format']; $review = $_POST['movie_review']; $studio = $_POST['movie_studio']; $runtime = $_POST['movie_runtime']; $region = $_POST['movie_region']; $qstring = "UPDATE tbl_movies SET movie_title='".$title."',movie_year='".$year."',movie_genre='".$ genre."',movie_director='".$director."',movie_image='".$image. "',movie_info='".$info."',movie_status='".$status."',movie_ratin g='".$rating."',movie_format='".$format."',movie_review='".$re view."',movie_studio='".$studio."',movie_runtime='".$runtime."' ,movie_region='".$region."' WHERE movie_id=".$editthis; $edit = mysql_query($qstring); header("Location: admin_main.php");
  • 44. input, select,textarea { font-family:Arial, Helvetica, sans-serif; font-size: 12px; background-color:#CCCCCC; } #movieimage { font-family:Arial, Helvetica, sans-serif; font-size: 12px; background-color:#CCCCCC; } #wrapper { position:relative; width:800px; margin:0px auto; } #header { font-size:18px; width:300px; height:50px; float:left; } #search { width:250px; float:left; } #sort { width:250px; float:left; } #maincontent { width:800px; clear:left; } #footer { font-size:10px; text-align:center;
  • 45. width:800px; height:15px; margin-top:10px; } #image { position:absolute; left:10px; top:10px; width:200px; height:300px; } #title { position:absolute; left:250px; top:10px; font-size:18px; width:200px; height:20px; } #info { position:absolute; left:250px; top:50px; font-size:12px; width:400px; height:400px; } .dvdtitle { font-size:14px; font-weight:bold; color:#333333; } .hilite { font-style:italic; }
  • 46. all_codes_i_learnt_before/cms_part2_done/images/eraserhead.jp g all_codes_i_learnt_before/cms_part2_done/images/female.jpg all_codes_i_learnt_before/cms_part2_done/images/godfather.jpg all_codes_i_learnt_before/cms_part2_done/images/highlow.jpg all_codes_i_learnt_before/cms_part2_done/images/incredibles.j pg all_codes_i_learnt_before/cms_part2_done/images/labyrinth.jpg all_codes_i_learnt_before/cms_part2_done/images/mulholland.j pg all_codes_i_learnt_before/cms_part2_done/images/planetearth.j pg all_codes_i_learnt_before/cms_part2_done/images/potter5.jpg all_codes_i_learnt_before/cms_part2_done/images/pulp.jpg all_codes_i_learnt_before/cms_part2_done/images/ratatouille.jp g all_codes_i_learnt_before/cms_part2_done/images/reservoir.jpg all_codes_i_learnt_before/cms_part2_done/images/samurai.jpg all_codes_i_learnt_before/cms_part2_done/images/strangelove.j pg all_codes_i_learnt_before/cms_part2_done/images/suspiria.jpg
  • 47. all_codes_i_learnt_before/cms_part2_done/images/throne.jpg all_codes_i_learnt_before/cms_part2_done/images/thumbs/.DS_ Store all_codes_i_learnt_before/cms_part2_done/images/thumbs/alien sth.jpg all_codes_i_learnt_before/cms_part2_done/images/thumbs/alien th.jpg all_codes_i_learnt_before/cms_part2_done/images/thumbs/audit ionth.jpg all_codes_i_learnt_before/cms_part2_done/images/thumbs/bour neth.jpg all_codes_i_learnt_before/cms_part2_done/images/thumbs/casin oth.jpg all_codes_i_learnt_before/cms_part2_done/images/thumbs/chain sawth.jpg all_codes_i_learnt_before/cms_part2_done/images/thumbs/chris tmasth.jpg all_codes_i_learnt_before/cms_part2_done/images/thumbs/deadt h.jpg all_codes_i_learnt_before/cms_part2_done/images/thumbs/erase rheadth.jpg all_codes_i_learnt_before/cms_part2_done/images/thumbs/fema leth.jpg
  • 48. all_codes_i_learnt_before/cms_part2_done/images/thumbs/godf atherth.jpg all_codes_i_learnt_before/cms_part2_done/images/thumbs/highl owth.jpg all_codes_i_learnt_before/cms_part2_done/images/thumbs/incre diblesth.jpg all_codes_i_learnt_before/cms_part2_done/images/thumbs/labyr inthth.jpg all_codes_i_learnt_before/cms_part2_done/images/thumbs/mulh ollandth.jpg all_codes_i_learnt_before/cms_part2_done/images/thumbs/plane tearthth.jpg all_codes_i_learnt_before/cms_part2_done/images/thumbs/potte rth.jpg all_codes_i_learnt_before/cms_part2_done/images/thumbs/pulpt h.jpg all_codes_i_learnt_before/cms_part2_done/images/thumbs/ratat ouilleth.jpg all_codes_i_learnt_before/cms_part2_done/images/thumbs/reser voirth.jpg all_codes_i_learnt_before/cms_part2_done/images/thumbs/samu raith.jpg all_codes_i_learnt_before/cms_part2_done/images/thumbs/stran geloveth.jpg
  • 50. all_codes_i_learnt_before/cms_part2_done/movielist.php DVD Movie List Show By Genre: <choose genre> Action Comedy Drama Horror Science Fiction All Movies Search: ".$row['movie_title']."".$row['movie_genre']."more... "; }
  • 51. ?> copyright 2009 all rights reserved all_codes_i_learnt_before/practice/db_media.sql -- phpMyAdmin SQL Dump -- version 3.4.5 -- http://www.phpmyadmin.net -- -- Host: localhost -- Generation Time: Feb 04, 2012 at 03:11 AM -- Server version: 5.5.16 -- PHP Version: 5.3.8 SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @[email protected]@CHARACTER_SET_CLIENT */; /*!40101 SET @[email protected]@CHARACTER_SET_RESULTS */; /*!40101 SET @[email protected]@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; -- -- Database: `db_media` --
  • 52. -- -------------------------------------------------------- -- -- Table structure for table `tbl_links` -- CREATE TABLE IF NOT EXISTS `tbl_links` ( `links_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT, `links_name` varchar(50) NOT NULL, `links_content` varchar(100) NOT NULL, PRIMARY KEY (`links_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ; -- -- Dumping data for table `tbl_links` -- INSERT INTO `tbl_links` (`links_id`, `links_name`, `links_content`) VALUES (1, 'Una Wu''s Studio Website', 'www.unawustudio.com'), (2, 'Facebook', 'www.facebook.com/unawustudio'), (3, 'Twitter', 'www.twitter.com/unawustudio'); -- -------------------------------------------------------- -- -- Table structure for table `tbl_news` -- CREATE TABLE IF NOT EXISTS `tbl_news` ( `news_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT, `news_img` varchar(50) NOT NULL DEFAULT 'noimage.jpg', `news_title` varchar(100) NOT NULL,
  • 53. `news_date` date NOT NULL, `news_content` varchar(500) NOT NULL, PRIMARY KEY (`news_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ; -- -- Dumping data for table `tbl_news` -- INSERT INTO `tbl_news` (`news_id`, `news_img`, `news_title`, `news_date`, `news_content`) VALUES (1, '1.jpg', 'Una Wu''s Studio Updating', '2012-02-01', 'There are some new logo design updated at www.unawustudio.com '), (2, '2.jpg', 'New concept of UWS', '2012-02-03', 'UWS(Una Wu''s Studio) has a new concept that we''ll keep the best idea for the best client. Clients are always the first.'), (3, '3.jpg', 'Multimedia industries gradually into the boom', '2012-02-03', 'Nowadays, multimedia industries gradually into the boom.More and more multimedia people are needed by society. The new graduates will set off again a climax.'), (4, '4.jpg', 'The Multimedia News Release', '2012-02-03', 'Once referred to as a "one-stop shop" for journalists to acquire elements for a news story, the Multimedia News Release has morphed into the ultimate marketing tool for consumer engagement. '); -- -------------------------------------------------------- -- -- Table structure for table `tbl_pf` -- CREATE TABLE IF NOT EXISTS `tbl_pf` ( `pf_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
  • 54. `pf_title` varchar(100) NOT NULL, `pf_format` varchar(50) NOT NULL, `pf_img` varchar(50) NOT NULL DEFAULT 'noimage.jpg', `pf_content` varchar(500) NOT NULL, `pf_date` date NOT NULL, PRIMARY KEY (`pf_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=8 ; -- -- Dumping data for table `tbl_pf` -- INSERT INTO `tbl_pf` (`pf_id`, `pf_title`, `pf_format`, `pf_img`, `pf_content`, `pf_date`) VALUES (1, 'Peking Opera', 'Illustrator', 'peking.jpg', 'Peking Opera is the essence of China. Using Illustrator to make it as an elective img, and using effectives to make it like a graffiti.', '2011-01- 19'), (2, '1920''s Poster', 'Photoshop', 'poster.jpg', 'The inspiration comes from the 1920''s superstar - Marilyn Monroe. Using bright color to give it a fashion feeling. ', '2011-03-15'), (3, 'Thai Greeting', 'Photoshop', 'thai.jpg', 'A logo for Thai Greeting Resturant', '2011-05-10'), (4, 'Forever', 'Photoshop', 'forever.jpg', 'A photography which is taken by Una Wu. This photo shows a love forever.', '2011-06- 14'), (5, 'Gee', 'Video', 'gee.jpg', 'This is the work from Una''s student life, using Illustrator, after effect to do a little dancing video.', '2011-09-08'), (6, 'Columbia Official Website Redesign', 'Web', 'website.jpg', 'Using Dreamweaver to redesign Columbia website', '2011-10- 12'), (7, 'Eldon House', 'Web', 'eldon.jpg', 'A practice website design by dreamweaver', '2011-12-07');
  • 55. -- -------------------------------------------------------- -- -- Table structure for table `tbl_team` -- CREATE TABLE IF NOT EXISTS `tbl_team` ( `team_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT, `team_name` varchar(100) NOT NULL, `team_position` varchar(50) NOT NULL, `team_date` datetime NOT NULL, `team_img` varchar(50) NOT NULL DEFAULT 'noimage.jpg', PRIMARY KEY (`team_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ; -- -- Dumping data for table `tbl_team` -- INSERT INTO `tbl_team` (`team_id`, `team_name`, `team_position`, `team_date`, `team_img`) VALUES (1, 'Guanyi Wu', 'Designer', '2012-02-01 10:00:00', 'guanyi.jpg'), (2, 'Jianwei Zhang', 'Financial and Accounting', '2012-02-02 14:00:00', 'jianwei.jpg'), (3, 'Tingrong Hang', 'Sales', '2012-02-03 09:00:00', 'tingrong.jpg'), (4, 'Yue Feng', 'Sales', '2012-02-03 10:00:00', 'fengyue.jpg'); /*!40101 SET [email protected]_CHARACTER_SET_CLIENT */; /*!40101 SET [email protected]_CHARACTER_SET_RESULTS */; /*!40101 SET [email protected]_COLLATION_CONNECTION
  • 57. all_codes_i_learnt_before/start_files_week6/images/clockwork.j pg all_codes_i_learnt_before/start_files_week6/images/dead.jpg all_codes_i_learnt_before/start_files_week6/images/dvdsite.css body { font-family:Arial, Helvetica, sans-serif; font-size: 12px; } tr { padding-right:3px; margin:12px; border:0px; } input, select,textarea { font-family:Arial, Helvetica, sans-serif; font-size: 12px; background-color:#CCCCCC; } #movieimage { font-family:Arial, Helvetica, sans-serif; font-size: 12px; background-color:#CCCCCC; } #wrapper { position:relative; width:800px; margin:0px auto; } #header { font-size:18px; width:300px; height:50px; float:left; }
  • 58. #search { width:250px; float:left; } #sort { width:250px; float:left; } #maincontent { width:800px; clear:left; } #footer { font-size:10px; text-align:center; width:800px; height:15px; margin-top:10px; } #image { position:absolute; left:10px; top:10px; width:200px; height:300px; } #title { position:absolute; left:250px; top:10px; font-size:18px; width:200px; height:20px; } #info { position:absolute;
  • 60. jpg all_codes_i_learnt_before/start_files_week6/images/potter5.jpg all_codes_i_learnt_before/start_files_week6/images/pulp.jpg all_codes_i_learnt_before/start_files_week6/images/ratatouille.j pg all_codes_i_learnt_before/start_files_week6/images/reservoir.jp g all_codes_i_learnt_before/start_files_week6/images/samurai.jpg all_codes_i_learnt_before/start_files_week6/images/strangelove .jpg all_codes_i_learnt_before/start_files_week6/images/suspiria.jpg all_codes_i_learnt_before/start_files_week6/images/throne.jpg all_codes_i_learnt_before/start_files_week6/images/thumbs/.DS _Store all_codes_i_learnt_before/start_files_week6/images/thumbs/alie nsth.jpg all_codes_i_learnt_before/start_files_week6/images/thumbs/alie nth.jpg all_codes_i_learnt_before/start_files_week6/images/thumbs/aud itionth.jpg all_codes_i_learnt_before/start_files_week6/images/thumbs/bou rneth.jpg
  • 61. all_codes_i_learnt_before/start_files_week6/images/thumbs/casi noth.jpg all_codes_i_learnt_before/start_files_week6/images/thumbs/cha insawth.jpg all_codes_i_learnt_before/start_files_week6/images/thumbs/chri stmasth.jpg all_codes_i_learnt_before/start_files_week6/images/thumbs/dea dth.jpg all_codes_i_learnt_before/start_files_week6/images/thumbs/eras erheadth.jpg all_codes_i_learnt_before/start_files_week6/images/thumbs/fem aleth.jpg all_codes_i_learnt_before/start_files_week6/images/thumbs/god fatherth.jpg all_codes_i_learnt_before/start_files_week6/images/thumbs/hig hlowth.jpg all_codes_i_learnt_before/start_files_week6/images/thumbs/incr ediblesth.jpg all_codes_i_learnt_before/start_files_week6/images/thumbs/lab yrinthth.jpg all_codes_i_learnt_before/start_files_week6/images/thumbs/mul hollandth.jpg all_codes_i_learnt_before/start_files_week6/images/thumbs/pla netearthth.jpg
  • 62. all_codes_i_learnt_before/start_files_week6/images/thumbs/pott erth.jpg all_codes_i_learnt_before/start_files_week6/images/thumbs/pul pth.jpg all_codes_i_learnt_before/start_files_week6/images/thumbs/rata touilleth.jpg all_codes_i_learnt_before/start_files_week6/images/thumbs/rese rvoirth.jpg all_codes_i_learnt_before/start_files_week6/images/thumbs/sam uraith.jpg all_codes_i_learnt_before/start_files_week6/images/thumbs/stra ngeloveth.jpg all_codes_i_learnt_before/start_files_week6/images/thumbs/sus piriath.jpg all_codes_i_learnt_before/start_files_week6/images/thumbs/thcl ockwork.jpg all_codes_i_learnt_before/start_files_week6/images/thumbs/thro neth.jpg all_codes_i_learnt_before/start_files_week6/images/thumbs/vel vetth.jpg all_codes_i_learnt_before/start_files_week6/images/thumbs/yu math.jpg all_codes_i_learnt_before/start_files_week6/images/velvet.jpg all_codes_i_learnt_before/start_files_week6/images/yuma.jpg
  • 63. all_codes_i_learnt_before/start_files_week6/movie_db.sql -- phpMyAdmin SQL Dump -- version 3.2.4 -- http://www.phpmyadmin.net -- -- Host: localhost -- Generation Time: Jan 17, 2011 at 04:49 PM -- Server version: 5.1.37 -- PHP Version: 5.2.11 SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; /*!40101 SET @[email protected]@CHARACTER_SET_CLIENT */; /*!40101 SET @[email protected]@CHARACTER_SET_RESULTS */; /*!40101 SET @[email protected]@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; -- -- Database: 'db_moviesa' -- -- -------------------------------------------------------- -- -- Table structure for table 'tbl_movies' -- CREATE TABLE tbl_movies ( movie_id smallint(4) unsigned NOT NULL AUTO_INCREMENT, movie_title varchar(150) NOT NULL,
  • 64. movie_year year(4) NOT NULL, movie_genre varchar(50) NOT NULL, movie_director varchar(100) NOT NULL, movie_thumb varchar(100) NOT NULL, movie_image varchar(100) NOT NULL, movie_info text NOT NULL, movie_status varchar(20) NOT NULL, movie_rating varchar(6) NOT NULL, movie_format varchar(20) NOT NULL, movie_review int(4) DEFAULT NULL, movie_studio varchar(120) NOT NULL, movie_runtime varchar(25) DEFAULT NULL, movie_region varchar(2) DEFAULT NULL, PRIMARY KEY (movie_id) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table 'tbl_movies' -- INSERT INTO tbl_movies VALUES(1, 'Dr. Strangelove', 1960, 'Comedy', 'Kubrick', 'strangeloveth.jpg', 'strangelove.jpg', 'Arguably the greatest black comedy ever made, Stanley Kubrick''s cold-war classic is the ultimate satire of the nuclear age. Dr. Strangelove is a perfect spoof of political and military insanity, beginning when General Jack D. Ripper (Sterling Hayden), a maniacal warrior obsessed with "the purity of precious bodily fluids," mounts his singular campaign against Communism by ordering a squadron of B-52 bombers to attack the Soviet Union. The Soviets counter the threat with a so- called "Doomsday Device," and the world hangs in the balance while the U.S. president (Peter Sellers) engages in hilarious hot-line negotiations with his Soviet counterpart.', 'Rented', 'PG-13', 'Widescreen', 4, 'Warner Brothers', '172 Minutes', '1'); INSERT INTO tbl_movies VALUES(2, 'Blue Velvet', 1986, 'Drama', 'Lynch', 'velvetth.jpg', 'velvet.jpg', 'A man returns to
  • 65. his home town after being away and discovers a severed human ear in a field. Not satisfied with the police''s pace, he and the police detective''s daughter carry out their own investigation. The object of his investigation turns out to be a beautiful and mysterious woman involved with a violent and perversely evil man.', 'Available', 'R', 'Widescreen', 3, 'New Line', '154 Minutes', '0'); INSERT INTO tbl_movies VALUES(3, 'Mulholland Drive', 2001, 'Drama', 'Lynch', 'mulhollandth.jpg', 'mulholland.jpg', 'Pandora couldn''t resist opening the forbidden box containing all the delusions of mankind, and let''s just say David Lynch, in Mulholland Drive, indulges a similar impulse. Employing a familiar film noir atmosphere to unravel, as he coyly puts it, "a love story in the city of dreams," Lynch establishes a foreboding but playful narrative in the film''s first half before subsuming all of Los Angeles and its corrupt ambitions into his voyeuristic universe of desire. Identities exchange, amnesia proliferates, and nightmare visions are induced, but not before we''ve become enthralled by the film''s two main characters: the dazed and sullen femme fatale, Rita (Laura Elena Harring), and the pert blonde just-arrived from Ontario (played exquisitely by Naomi Watts) who decides to help Rita regain her memory. Triggered by a rapturous Spanish-language version of Roy Orbison''s "Crying," Lynch''s best film since Blue Velvet splits glowingly into two equally compelling parts.', 'Rented', 'R', 'Fullscreen', 4, 'New Line', '173 Minutes', '1'); INSERT INTO tbl_movies VALUES(4, 'Eraserhead', 1977, 'Science Fiction', 'Lynch', 'eraserheadth.jpg', 'eraserhead.jpg', 'Is it a nightmare or an actual view of a post-apocalyptic world? Set in an industrial town in which giant machines are constantly working, spewing smoke, and making noise that is inescapable, Henry Spencer lives in a building that, like all the others, appears to be abandoned. The lights flicker on and off, he has bowls of water in his dresser drawers, and for his only diversion he watches and listens to the Lady in the Radiator sing about finding happiness in heaven. Henry has a girlfriend, Mary X,
  • 66. who has frequent spastic fits. Mary gives birth to Henry''s child, a frightening looking mutant, which leads to the injection of all sorts of sexual imagery into the depressive and chaotic mix.', 'Available', 'PG-13', 'Widescreen', 3, 'Paramount', '98 Minutes', '1'); INSERT INTO tbl_movies VALUES(5, 'Seven Samurai', 1954, 'Action', 'Kurosawa', 'samuraith.jpg', 'samurai.jpg', 'Hailed as the greatest film in the history of Japanese cinema, Seven Samurai is director Akira Kurosawa''s undisputed masterpiece. Arguably the greatest of all jidai-gecki (or historical swordplay films), Kurosawa''s classic 1954 action drama has never been surpassed in terms of sheer power of emotion, kinetic energy, and dynamic character development. The story is set during the civil unrest of 16th-century Japan, as the cowering residents of a small farming village are seeking protection against seasonal attacks by a band of marauding bandits. Offering mere handfuls of rice as payment, they hire seven unemployed "ronin" (masterless samurai), including a boastful swordsman (Toshiro Mifune) who is actually a peasant farmer''s son, desperately seeking glory, acceptance, and revenge against those who destroyed his family. Led by the calmly strategic Kambei (Takashi Shimura, star of Kurosawa''s previous classic, Ikiru), the samurai form mutual bonds of honor and respect, but remain distant from the villagers, knowing that their assignment may prove to be fatal.', 'Available', 'PG-13', 'Widescreen', 5, 'Toho', '183 Minutes', '0'); INSERT INTO tbl_movies VALUES(6, 'Throne of Blood', 1961, 'Drama', 'Kurosawa', 'throneth.jpg', 'throne.jpg', 'One of the most celebrated screen adaptations of Shakespeare into film, Akira Kurosawaís Throne of Blood re-imagines Macbeth in feudal Japan. Starring Kurosawaís longtime collaborator Toshiro Mifune and the legendary Isuzu Yamada as his ruthless wife, the film tells of a valiant warriorís savage rise to power and his ignominious fall. With Throne of Blood, Kurosawa fuses one of Shakespeareís greatest tragedies with the formal elements of Japanese Noh theater to make a Macbeth that is all
  • 67. his ownóa classic tale of ambition and duplicity set against a ghostly landscape of fog and inescapable doom.', 'Rented', 'PG- 13', 'Widescreen', 5, 'Toho', '212 Minutes', '0'); INSERT INTO tbl_movies VALUES(7, 'High and Low', 1963, 'Drama', 'Kurosawa', 'highlowth.jpg', 'highlow.jpg', 'Although best known for his samurai classics, Japanese master filmmaker Akira Kurosawa proved himself equally adept at contemporary dramas and thrillers, and 1962''s High and Low offers a powerful showcase for Kurosawa''s versatile skill. The great Toshiro Mifune stars as a wealthy industrialist who has just raised a large sum of money to execute his planned takeover of a successful shoe manufacturer. Fate intervenes when he receives a phone call informing him that his son has been kidnapped, and by unfortunate coincidence the ransom demand is nearly equivalent to the amount Mifune has raised for his corporate coup. A philosophical dilemma emerges when it is revealed that the executive''s son is safe, and that it is actually his chauffeur''s son who has been taken. What follows is both a tense detective thriller, as the police attempt to track down the kidnapper, and a compelling illustration of class division in Japan--the "high and low" of the title.', 'Available', 'PG-13', 'Fullscreen', 4, 'Toho', '132 Minutes', '0'); INSERT INTO tbl_movies VALUES(8, 'Female Trouble', 1974, 'Comedy', 'Waters', 'femaleth.jpg', 'female.jpg', 'John Waters expands the definition of female trouble in this mutant tribute to good-girl-gone-bad drive-in melodramas. The girl is, of course, cross-dressing cult icon Divine, Waters''s plus-sized muse. Divine is at her most gleefully outrageous as teenage brat Dawn Davenport, who runs away from home and into a life of wanton hedonism all because she didn''t get cha-cha heels for Christmas. Almost immediately she''s molested by a sleazy motorcycle thug (also played by Divine--is this Waters''s idea of "love thyself"?), but she doesn''t let motherhood interfere with her plans of stardom and turns herself into an unlikely fashion statement in an apocalyptic fashion show. Waters''s fourth feature, a follow-up to the midnight movie hit Pink Flamingos,
  • 68. is just as cinematically primitive and even more gleefully vulgar, right down to the electric climax of Dawn''s road to everlasting fame.', 'Rented', 'R', 'Fullscreen', 3, 'United Artists', '122 Minutes', '1'); INSERT INTO tbl_movies VALUES(9, 'The Godfather', 1972, 'Drama', 'Coppola', 'godfatherth.jpg', 'godfather.jpg', 'Generally acknowledged as a bona fide classic, this Francis Ford Coppola film is one of those rare experiences that feels perfectly right from beginning to end--almost as if everyone involved had been born to participate in it. Based on Mario Puzo''s bestselling novel about a Mafia dynasty, Coppola''s Godfather extracted and enhanced the most universal themes of immigrant experience in America: the plotting-out of hopes and dreams for one''s successors, the raising of children to carry on the good work, etc. In the midst of generational strife during the Vietnam years, the film somehow struck a chord with a nation fascinated by the metamorphosis of a rebellious son (Al Pacino) into the keeper of his father''s dream. Marlon Brando played against Puzo''s own conception of patriarch Vito Corleone, and time has certainly proven the actor correct. The rest of the cast, particularly James Caan, John Cazale, and Robert Duvall as the rest of Vito''s male brood--all coping with how to take the mantle of responsibility from their father--is seamless and wonderful.', 'Available', 'PG-13', 'Widescreen', 5, 'Paramount', '176 Minutes', '1'); INSERT INTO tbl_movies VALUES(10, 'Alien', 1979, 'Science Fiction', 'Scott', 'alienth.jpg', 'alien.jpg', 'The terror begins when the crew of a spaceship investigates a transmission from a desolate planet, and discovers a life form that is perfectly evolved to annihilate mankind. One by one, each crew member is slain until only Ripley is left, leading to an explosive conclusion that sets the stage for its stunning sequel, "Aliens."', 'On Order', 'PG-13', 'Fullscreen', 4, 'New Line', '134 Minutes', '1'); INSERT INTO tbl_movies VALUES(11, 'Aliens', 1986, 'Science Fiction', 'Cameron', 'aliensth.jpg', 'aliens.jpg', 'In this action-
  • 69. packed sequel to Alien, Sigourney Weaver returns as Ripley, the only survivor from mankind''s first encounter with the monstrous Alien. Her account of the Alien and the fate of her crew are received with skepticism - until the mysterious disappearance of colonists on LV-426 leads her to join a team of high-tech colonial marines sent in to investigate. Personally supervised by director James Cameron, this special edition includes scenes eliminated prior to the film''s 1986 release which broaden the narrative scope and enrich the emotional impact of the film.', 'Available', 'PG-13', 'Widescreen', 4, 'Warner Brothers', '136 Minutes', '1'); INSERT INTO tbl_movies VALUES(12, 'The Texas Chainsaw Massacre', 1974, 'Horror', 'Hooper', 'chainsawth.jpg', 'chainsaw.jpg', 'It has been called grisly, sick, and perverse as well as raw, unshakeable, and the movie that redefined horror. It was attacked by churches, banned by governments, and acclaimed by only the bravest of critics. It stunned audiences worldwide and set a new standard in movie terror forever. In 1974, writer-producer-director Tobe Hooper unleashed this dark, visionary tale about a group of five young friends who face a nightmare of torment at the hands of a depraved Texas clan. Today it remains unequaled as a landmark of outlaw filmmaking and unparalleled in its impact as perhaps the most frightening motion picture ever made.', 'Available', 'R', 'Fullscreen', 4, 'United Artists', '94 Minutes', '1'); INSERT INTO tbl_movies VALUES(13, 'Audition', 1999, 'Horror', 'Miike', 'auditionth.jpg', 'audition.jpg', 'If you want the full sledgehammer-to-the-stomach effect of Audition, stop reading this review now. Just watch it and take the consequences. At first glance, Takashi Miike''s jack in the box of a movie works like a romantic comedy: amiable widower Shigeharu Aoyama (Ryo Ishibashi) decides it''s time to find a new wife, and a friend suggests holding a fake audition to find the right girl. It soon becomes clear that there is something wrong with Aoyama''s choice. This is no ordinary Fatal Attraction-style thriller, however; Audition slowly and carefully
  • 70. builds into a wrenching exploration of both deep male fears and the stereotype of the cute, submissive Japanese woman. Audition is by no means an easy movie to watch--even hardcore horror fans may have trouble--but it will stay with you for a long, long time.', 'Available', 'NC-17', 'Fullscreen', 2, 'Toho', '94 Minutes', '0'); INSERT INTO tbl_movies VALUES(14, 'Ratatouille', 2007, 'Comedy', 'Bird', 'ratatouilleth.jpg', 'ratatouille.jpg', 'One key point: if you can get over the natural gag reflex of seeing hundreds of rodents swarming over a restaurant kitchen, you will be free to enjoy the glory of Ratatouille, a delectable Pixar hit. Our hero is Remy, a French rat (voiced by Patton Oswalt) with a cultivated palate, who rises from his humble beginnings to become head chef at a Paris restaurant. How this happens is the stuff of Pixar magic, that ineffable blend of headlong comedy, seamless technology, and wonder (in the latter department, this movie''s views of nighttime Paris are on a par with French cinema at its most lyrical). Director Brad Bird (The Incredibles) doesn''t quite keep all his spinning plates in the air, but the gags are great and the animation amazingly expressive-- Remy''s shrugs and nods are nimbler than many flesh-and-blood actors can manage. Refreshingly, the movie''s characters aren''t celebrity-reliant, with the most recognizable voice coming from Peter O''Toole''s snide food critic.', 'Rented', 'G', 'Widescreen', 5, 'Pixar', '124 Minutes', '1'); INSERT INTO tbl_movies VALUES(15, 'The Incredibles', 2004, 'Comedy', 'Bird', 'incrediblesth.jpg', 'incredibles.jpg', 'After creating the last great traditionally animated film of the 20th century, The Iron Giant, filmmaker Brad Bird joined top-drawer studio Pixar to create this exciting, completely entertaining computer-animated film. Bird gives us a family of "supers," a brood of five with special powers desperately trying to fit in with the 9-to-5 suburban lifestyle. Of course, in a more innocent world, Bob and Helen Parr were superheroes, Mr. Incredible and Elastigirl. But blasted lawsuits and public disapproval forced them and other supers to go incognito, making it even tougher
  • 71. for their school-age kids, the shy Violet and the aptly named Dash. When a stranger named Mirage (voiced by Elizabeth Pena) secretly recruits Bob for a potential mission, the old glory days spin in his head, even if his body is a bit too plump for his old super suit.', 'Available', 'G', 'Widescreen', 5, 'Pixar', '122 Minutes', '1'); INSERT INTO tbl_movies VALUES(16, 'Night of the Living Dead', 1968, 'Horror', 'Romero', 'deadth.jpg', 'dead.jpg', 'Night of the Living Dead is a seminal 1968 black-and-white independent horror film directed by George A. Romero. Early drafts of the script were titled Monster Flick, but it was known as Night of Anubis and Night of the Flesh Eaters during production. The film stars Duane Jones as Ben and Judith O''Dea as Barbra. The plot revolves around the mysterious reanimation of the dead and the efforts of Ben, Barbra and five others to survive the night while trapped in a rural Pennsylvania farmhouse. Romero produced the film on the small budget of $114,000, but after a decade of theatrical re-releases it had grossed an estimated $12 million in the United States and $30 million internationally.', 'Available', 'PG-13', 'Fullscreen', 4, 'Warner Brothers', '85 Minutes', '1'); INSERT INTO tbl_movies VALUES(17, 'Suspiria', 1977, 'Horror', 'Argento', 'suspiriath.jpg', 'suspiria.jpg', 'Outside of devoted cult audiences, many Americans have yet to discover the extremely stylish, relentlessly terrifying Italian horror genre, or the films of its talented virtuoso, Dario Argento. Suspiria, part one of a still-uncompleted trilogy (the luminously empty Inferno was the second), is considered his masterpiece by Argento devotees but also doubles as a perfect starting point for those unfamiliar with the director or his genre. The convoluted plot follows an American dancer (Jessica Harper) from her arrival at a European ballet school to her discovery that it''s actually a witches coven; but, really, don''t worry about that too much. Argento makes narrative subservient to technique, preferring instead to assault the senses and nervous system with mood, atmosphere, illusory gore, garish set production, a
  • 72. menacing camera, and perhaps the creepiest score ever created for a movie. It''s essentially a series of effectively unsettling set pieces--a raging storm that Harper should have taken for an omen, and a blind man attacked by his own dog are just two examples--strung together on a skeleton structure. But once you''ve seen it, you''ll never forget it.', 'Available', 'R', 'Widescreen', 4, 'Italifilm Studios', '134 Minutes', '0'); INSERT INTO tbl_movies VALUES(18, 'Casino', 1995, 'Drama', 'Scorsese', 'casinoth.jpg', 'casino.jpg', 'This Martin Scorsese film depicts the Janus-like quality of Las Vegas--it has a glittering, glamorous face, as well as a brutal, cruel one. Ace Rothstein and Nicky Santoro, mobsters who move to Las Vegas to make their mark, live and work in this paradoxical world. Seen through their eyes, each as a foil to the other, the details of mob involvement in the casinos of the 1970''s and ''80''s are revealed. Ace is the smooth operator of the Tangiers casino, while Nicky is his boyhood friend and tough strongman, robbing and shaking down the locals. However, they each have a tragic flaw--Ace falls in love with a hustler, Ginger, and Nicky falls into an ever-deepening spiral of drugs and violence.', 'Rented', 'R', 'Widescreen', 3, 'Warner Brothers', '2 hours 10 Minutes', '1'); INSERT INTO tbl_movies VALUES(24, 'A Clockwork Orange', 1971, 'Science Fiction', '', 'thclockwork.jpg', 'clockwork.jpg', 'classic sf movie', 'Available', 'R', 'Widescreen', 5, 'Warners', '2:22', '1'); all_codes_i_learnt_before/start_files_week6/movie_details.php ";?> Studio
  • 73. Runtime all_codes_i_learnt_before/start_files_week6/movie_list_start.ph p ".$row['movie_title']." (".$row['movie_year'].") more... "; //print the values along with markup on the page }/* "" is to close src, and the img will shows as many as database has; The name in the $row is database's id name */ ?> all_codes_i_learnt_before/start_files_week6/wamp/www/start_fi les_week6/movie_details.php ";?> Studio all_codes_i_learnt_before/start_files_week6/wamp/www/start_fi les_week6/movie_list_start.php
  • 74. ".$row['movie_title']." (".$row['movie_year'].") more... "; //print the values along with markup on the page }/* "" is to close src, and the img will shows as many as database has; The name in the $row is database's id name */ ?> all_codes_i_learnt_before/week11_cmspart2/addmovie.php <?php require_once("connect.php"); $title = $_POST['movie_title']; $year = $_POST['movie_year']; $genre = $_POST['movie_genre']; $director = $_POST['movie_director']; $image = $_POST['movie_image']; $info = $_POST['movie_info']; $status = $_POST['movie_status']; $rating = $_POST['movie_rating']; $format = $_POST['movie_format']; $review = $_POST['movie_review']; $studio = $_POST['movie_studio']; $runtime = $_POST['movie_runtime']; $region = $_POST['movie_region']; $thumb = "th_".$image; $qstring = "INSERT INTO tbl_movies VALUES(NULL,'".$title."','".$year."','".$genre."','".$director."', '".$thumb."','".$image."','".$info."','".$status."','".$rating."','".$f ormat."','".$review."','".$studio."','".$runtime."','".$region."')"; $result = mysql_query($qstring); header("Location: admin_add_movie.php"); ?>
  • 75. all_codes_i_learnt_before/week11_cmspart2/admin_add_movie. php Add a MovieTitle:Year:Genre:Action Comedy Drama Horror Science Fiction Director:Image:Info:Status:Available Rented Not in Stock Rating:Format: Widescreen FullscreenReview: (out of 5)Studio:Runtime: (hh:mm)Region: all_codes_i_learnt_before/week11_cmspart2/admin_delete_mov ie.php <?php require_once("connect.php"); /*new page connect code*/ $thismovie = $_GET['id']; $qstring = "DELETE FROM tbl_movies WHERE movie_id=" .$thismovie; /*change the variable name into your own words;Phrases: INSERT INTO, SELECT FROM, DELETE FROM, UPDATE SET*/ $byebye = mysql_query($qstring);
  • 76. header("Location: admin_main.php"); ?> all_codes_i_learnt_before/week11_cmspart2/admin_edit_movie. php Add a MovieTitle:Year:Genre:Director:Image:Info:Status:Rating:Form at:Review: (out of 5)Studio:Runtime: (hh:mm)Region: all_codes_i_learnt_before/week11_cmspart2/admin_main.php DVD Movie List Show By Genre: <choose genre> Action Comedy Drama Horror Science Fiction All Movies
  • 77. Search: ".$row['movie_title']."".$row['movie_genre']."edit...delete "; /* is space code*/ } ?> copyright 2009 all rights reserved all_codes_i_learnt_before/week11_cmspart2/connect.php <?php mysql_connect("localhost","root",""); mysql_select_db("db_movies"); ?> all_codes_i_learnt_before/week11_cmspart2/db_movies.sql -- phpMyAdmin SQL Dump -- version 3.2.4 -- http://www.phpmyadmin.net --
  • 78. -- Host: localhost -- Generation Time: Feb 15, 2010 at 04:00 PM -- Server version: 5.1.37 -- PHP Version: 5.2.11 SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; /*!40101 SET @[email protected]@CHARACTER_SET_CLIENT */; /*!40101 SET @[email protected]@CHARACTER_SET_RESULTS */; /*!40101 SET @[email protected]@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; -- -- Database: 'db_dvdsite' -- -- -------------------------------------------------------- -- -- Table structure for table 'tbl_movies' -- CREATE TABLE tbl_movies ( movie_id smallint(4) unsigned NOT NULL AUTO_INCREMENT, movie_title varchar(150) NOT NULL, movie_year year(4) NOT NULL, movie_genre varchar(50) NOT NULL, movie_director varchar(100) NOT NULL, movie_thumb varchar(100) NOT NULL, movie_image varchar(100) NOT NULL, movie_info text NOT NULL,
  • 79. movie_status varchar(20) NOT NULL, movie_rating varchar(6) NOT NULL, movie_format varchar(20) NOT NULL, movie_review int(4) DEFAULT NULL, movie_studio varchar(120) NOT NULL, movie_runtime varchar(25) DEFAULT NULL, movie_region varchar(2) DEFAULT NULL, PRIMARY KEY (movie_id) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table 'tbl_movies' -- INSERT INTO tbl_movies VALUES(1, 'Dr. Strangelove', 1960, 'Comedy', 'Kubrick', 'strangeloveth.jpg', 'strangelove.jpg', 'Arguably the greatest black comedy ever made, Stanley Kubrick''s cold-war classic is the ultimate satire of the nuclear age. Dr. Strangelove is a perfect spoof of political and military insanity, beginning when General Jack D. Ripper (Sterling Hayden), a maniacal warrior obsessed with "the purity of precious bodily fluids," mounts his singular campaign against Communism by ordering a squadron of B-52 bombers to attack the Soviet Union. The Soviets counter the threat with a so- called "Doomsday Device," and the world hangs in the balance while the U.S. president (Peter Sellers) engages in hilarious hot-line negotiations with his Soviet counterpart.', 'Rented', 'PG-13', 'Widescreen', 4, 'Warner Brothers', '172 Minutes', '1'); INSERT INTO tbl_movies VALUES(2, 'Blue Velvet', 1986, 'Drama', 'Lynch', 'velvetth.jpg', 'velvet.jpg', 'A man returns to his home town after being away and discovers a severed human ear in a field. Not satisfied with the police''s pace, he and the police detective''s daughter carry out their own investigation. The object of his investigation turns out to be a beautiful and mysterious woman involved with a violent and perversely evil man.', 'Available', 'R', 'Widescreen', 3, 'New Line', '154
  • 80. Minutes', '0'); INSERT INTO tbl_movies VALUES(3, 'Mulholland Drive', 2001, 'Drama', 'Lynch', 'mulhollandth.jpg', 'mulholland.jpg', 'Pandora couldn''t resist opening the forbidden box containing all the delusions of mankind, and let''s just say David Lynch, in Mulholland Drive, indulges a similar impulse. Employing a familiar film noir atmosphere to unravel, as he coyly puts it, "a love story in the city of dreams," Lynch establishes a foreboding but playful narrative in the film''s first half before subsuming all of Los Angeles and its corrupt ambitions into his voyeuristic universe of desire. Identities exchange, amnesia proliferates, and nightmare visions are induced, but not before we''ve become enthralled by the film''s two main characters: the dazed and sullen femme fatale, Rita (Laura Elena Harring), and the pert blonde just-arrived from Ontario (played exquisitely by Naomi Watts) who decides to help Rita regain her memory. Triggered by a rapturous Spanish-language version of Roy Orbison''s "Crying," Lynch''s best film since Blue Velvet splits glowingly into two equally compelling parts.', 'Rented', 'R', 'Fullscreen', 4, 'New Line', '173 Minutes', '1'); INSERT INTO tbl_movies VALUES(4, 'Eraserhead', 1977, 'Science Fiction', 'Lynch', 'eraserheadth.jpg', 'eraserhead.jpg', 'Is it a nightmare or an actual view of a post-apocalyptic world? Set in an industrial town in which giant machines are constantly working, spewing smoke, and making noise that is inescapable, Henry Spencer lives in a building that, like all the others, appears to be abandoned. The lights flicker on and off, he has bowls of water in his dresser drawers, and for his only diversion he watches and listens to the Lady in the Radiator sing about finding happiness in heaven. Henry has a girlfriend, Mary X, who has frequent spastic fits. Mary gives birth to Henry''s child, a frightening looking mutant, which leads to the injection of all sorts of sexual imagery into the depressive and chaotic mix.', 'Available', 'PG-13', 'Widescreen', 3, 'Paramount', '98 Minutes', '1'); INSERT INTO tbl_movies VALUES(5, 'Seven Samurai', 1954,
  • 81. 'Action', 'Kurosawa', 'samuraith.jpg', 'samurai.jpg', 'Hailed as the greatest film in the history of Japanese cinema, Seven Samurai is director Akira Kurosawa''s undisputed masterpiece. Arguably the greatest of all jidai-gecki (or historical swordplay films), Kurosawa''s classic 1954 action drama has never been surpassed in terms of sheer power of emotion, kinetic energy, and dynamic character development. The story is set during the civil unrest of 16th-century Japan, as the cowering residents of a small farming village are seeking protection against seasonal attacks by a band of marauding bandits. Offering mere handfuls of rice as payment, they hire seven unemployed "ronin" (masterless samurai), including a boastful swordsman (Toshiro Mifune) who is actually a peasant farmer''s son, desperately seeking glory, acceptance, and revenge against those who destroyed his family. Led by the calmly strategic Kambei (Takashi Shimura, star of Kurosawa''s previous classic, Ikiru), the samurai form mutual bonds of honor and respect, but remain distant from the villagers, knowing that their assignment may prove to be fatal.', 'Available', 'PG-13', 'Widescreen', 5, 'Toho', '183 Minutes', '0'); INSERT INTO tbl_movies VALUES(6, 'Throne of Blood', 1961, 'Drama', 'Kurosawa', 'throneth.jpg', 'throne.jpg', 'One of the most celebrated screen adaptations of Shakespeare into film, Akira Kurosawaís Throne of Blood re-imagines Macbeth in feudal Japan. Starring Kurosawaís longtime collaborator Toshiro Mifune and the legendary Isuzu Yamada as his ruthless wife, the film tells of a valiant warriorís savage rise to power and his ignominious fall. With Throne of Blood, Kurosawa fuses one of Shakespeareís greatest tragedies with the formal elements of Japanese Noh theater to make a Macbeth that is all his ownóa classic tale of ambition and duplicity set against a ghostly landscape of fog and inescapable doom.', 'Rented', 'PG- 13', 'Widescreen', 5, 'Toho', '212 Minutes', '0'); INSERT INTO tbl_movies VALUES(7, 'High and Low', 1963, 'Drama', 'Kurosawa', 'highlowth.jpg', 'highlow.jpg', 'Although best known for his samurai classics, Japanese master filmmaker
  • 82. Akira Kurosawa proved himself equally adept at contemporary dramas and thrillers, and 1962''s High and Low offers a powerful showcase for Kurosawa''s versatile skill. The great Toshiro Mifune stars as a wealthy industrialist who has just raised a large sum of money to execute his planned takeover of a successful shoe manufacturer. Fate intervenes when he receives a phone call informing him that his son has been kidnapped, and by unfortunate coincidence the ransom demand is nearly equivalent to the amount Mifune has raised for his corporate coup. A philosophical dilemma emerges when it is revealed that the executive''s son is safe, and that it is actually his chauffeur''s son who has been taken. What follows is both a tense detective thriller, as the police attempt to track down the kidnapper, and a compelling illustration of class division in Japan--the "high and low" of the title.', 'Available', 'PG-13', 'Fullscreen', 4, 'Toho', '132 Minutes', '0'); INSERT INTO tbl_movies VALUES(8, 'Female Trouble', 1974, 'Comedy', 'Waters', 'femaleth.jpg', 'female.jpg', 'John Waters expands the definition of female trouble in this mutant tribute to good-girl-gone-bad drive-in melodramas. The girl is, of course, cross-dressing cult icon Divine, Waters''s plus-sized muse. Divine is at her most gleefully outrageous as teenage brat Dawn Davenport, who runs away from home and into a life of wanton hedonism all because she didn''t get cha-cha heels for Christmas. Almost immediately she''s molested by a sleazy motorcycle thug (also played by Divine--is this Waters''s idea of "love thyself"?), but she doesn''t let motherhood interfere with her plans of stardom and turns herself into an unlikely fashion statement in an apocalyptic fashion show. Waters''s fourth feature, a follow-up to the midnight movie hit Pink Flamingos, is just as cinematically primitive and even more gleefully vulgar, right down to the electric climax of Dawn''s road to everlasting fame.', 'Rented', 'R', 'Fullscreen', 3, 'United Artists', '122 Minutes', '1'); INSERT INTO tbl_movies VALUES(9, 'The Godfather', 1972, 'Drama', 'Coppola', 'godfatherth.jpg', 'godfather.jpg', 'Generally