0

Which is the better to store the Image/Video between Base-64 OR URL of Server Path(physical Path i mean)in MySQL. And what could be variable and size to store the Video of size ~3MB

Chanikya
  • 476
  • 1
  • 8
  • 22

1 Answers1

0

Store your videos in your hosting. And store the link of video in MQSQL as a text data type.

mysql Query:

create table videos(
id int not null auto increment, 
  v_name varchar(100),
v_url text
);
Shenald
  • 143
  • 1
  • 12