Unexpected T_VARIABLE
I have this problem when I test the first example of chapter 3 in moviedata.php
The creation of the database (wiley) was succesfully but this file (moviedata.php) gives me an error
Parse error: syntax error, unexpected T_VARIABLE in C:\apachefriends\xampp\htdocs\moviedata.php on line 22
The code is the same as in the code download area of wrox.com
Line 22 is:
//insert data into "movie" table
$insert="INSERT INTO movie (movie_id, movie_name, movie_type, movie_year,
movie_leadactor, 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());
Too much thanks if you could help me!!!!
Daniel
|