php - How to fetch a video from db in codeigniter -


i'am trying code

<video width="320" height="240" controls>    <source src="<?php echo 'resource/video/';  echo $image; ?>" type="video/mp4">  <source src="<?php echo 'resource/video/';  echo $image; ?>" type="video/ogg">    </video> 

you can use base_url() this:

<video width="320" height="240" controls>                 <source src="<?php echo base_url('resource/video/'.$image); ?>" type="video/mp4">              <source src="<?php echo base_url('resource/video/'.$image);   ?>" type="video/ogg"> 

Comments

Popular posts from this blog

python - PyInstaller UAC not working in onefile mode -

python - RuntimeError: can't re-enter readline -

php - Need to store a large amount of data in session with CI 3 but on storing large data in session it is itself destorying automatically -