After clicking on table tr, how can I display this data on another page?

前端 未结 1 473
谎友^
谎友^ 2021-01-27 13:35

This is my code for a website that displays videos from a MySQL database. \'videoRef\' is the YouTube embed code that is stored in a video table.

$result=mysqli_q         


        
相关标签:
1条回答
  • 2021-01-27 14:06

    The possible solutions:

    1. Include link with embed wideo with large dimensions:
    <a href="https://www.youtube.com/embed/".$data['videoRef']><iframe>...</iframe></a>
    
    1. Include usual link to video:
    <a href="https://www.youtube.com/watch?v=".$data['videoRef']><iframe>...</iframe></a>
    
    0 讨论(0)
提交回复
热议问题