 |
BOOK: Beginning PHP5, Apache, and MySQL Web Development ISBN: 978-0-7645-7966-0  | This is the forum to discuss the Wrox book Beginning PHP5, Apache, and MySQL Web Development by Elizabeth Naramore, Jason Gerner, Yann Le Scouarnec, Jeremy Stolz, Michael K. Glass; ISBN: 9780764579660 |
|
Welcome to the p2p.wrox.com Forums.
You are currently viewing the BOOK: Beginning PHP5, Apache, and MySQL Web Development ISBN: 978-0-7645-7966-0 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
|
|
|
|

August 18th, 2010, 10:59 AM
|
|
Authorized User
|
|
Join Date: Aug 2010
Posts: 50
Thanks: 7
Thanked 0 Times in 0 Posts
|
|
Chapter 3 using Ready Made Databases
Hi I have been racking my brains trying to figure out whats wrong with my script any help would be appreciated. Thanks.
I am going through pages 94-96
Here is my moviedata script
Code:
//insert data into movie table
$insert = "INSERT INTO movie (movie_id,movie_name,movie_type,
movie_year,movie_leadacor,movie_director)
VALUES (1, 'Bruce Almighty', 5,2003,1,2),
(2,'Office Space',5,1999,5,6),
(3,'Grand Canyon',2,1991,4,3)";
$results =mysql_query($insert)
or die(mysql_error());
//insert datat in "movietype" table
$type = "INSERT INTO movietype (movietype_id,movietype_label)
VALUES (1,'Sci Fi'),
(2, 'Drama'),
(3, 'Adventure'),
(4, 'War'),
(5, 'Comedy'),
(6, 'Horror'),
(7, 'Action'),
(8, 'Kids')";
$results =mysql_query($type)
or die(mysql_error());
//insert data into "people" table
$people ="INSERT INTO people (people_id,people_fullname,
people_isactor,people_isdirector)
VALUES (1, 'Jim Carrey',0,1),
(2, 'Tom Shadyac',0,1),
(3, 'Lawerence Kasdan', 0,1),
(4, 'Kevin Kline', 1,0),
(5, 'Ron Livingston', 1,0),
(6, 'Mike Judge',0,1)";
$results =mysql_query($people)
or die(mysql_error());
echo "Data inserted succesfully!";
?>
I keep getting the following
Duplicate entry '1' for key 1
|
|

August 18th, 2010, 12:47 PM
|
|
Authorized User
|
|
Join Date: Aug 2010
Posts: 50
Thanks: 7
Thanked 0 Times in 0 Posts
|
|
Please close I got it figured out.
|
|
 |