Hallo, ich versuche zur Zeit ein Shopping Cart bauen...Ich versuche Erste Lerne und später auf meine Webseite Implementiert..
ich versuche folge wie dieses Video sagt, ich habe die Code download von hier
Der author von der Code sagt,
Advanced Shopping Cart Tutorial With Php and MySqli Database
Before you execute this project make sure you insert values in the database. to insert values in the database just type this command.
```sql
"INSERT INTO Producttb (product_name, product_price, product_image)
VALUES ('Apple MacBook Pro',1799,'./upload/product1.png'),
('Sony E7 Headphones',147,'./upload/product2.png'),
('Sony Xperia Z4',459,'./upload/product3.png'),
('Samsung Galaxy A50',278,'./upload/product4.png')";
```
Ich versuche es.. Öffnet ein Datenbank und give der Name Newdb dann auf SQL-Kommando schreibt wie er sagst, schreibe,
```sql
"INSERT INTO Producttb (product_name, product_price, product_image)
VALUES ('Apple MacBook Pro',1799,'./upload/product1.png'),
('Sony E7 Headphones',147,'./upload/product2.png'),
('Sony Xperia Z4',459,'./upload/product3.png'),
('Samsung Galaxy A50',278,'./upload/product4.png')";
```
und bekomme diese warnung,
Fehler in der SQL-Abfrage (1064): Syntax error near '``` sql "INSERT INTO Producttb (product_name, product_price, product_image) ' at line 1
Ein Screeshot wie sie aussiehst,
Kann Bitte jemand helfe mit diesem Probleme?