Question: MySQL and PHP Question How do insert an image into my table and print it out on a php webpage? I am using linux and
MySQL and PHP Question
How do insert an image into my table and print it out on a php webpage? I am using linux and have uploaded the images to the virtual machine
MySQL Table information is below
CREATE TABLE Cars ( Car_ID int AUTO_INCREMENT, Car_Name varchar(20), Car_Model varchar(20), Car_Colour varchar(20), Car_Price float, PRIMARY KEY (Car_ID) );
INSERT INTO Cars (Car_Name, Car_Model, Car_Colour, Car_Price) VALUES ('BMW', 'M3', 'BLUE', 80000);
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
