Jump to content
Fórum Script Brasil
  • 0

iframe


Collywobbles

Question

Olá amigos!!!

Atualmente, tenho este while (com as variáveis) e este iframe. 

O desafio é fazer o link dentro da variável ($exlink) ser lido src="" E colocar todo o iframe dentro do while, pra listar todos os vídeos! 

Podem me ajudar?

<?php 
                    while ($linhas = mysql_fetch_array($resultado)) {
                        $exlink = $linhas['link'];
                    }
                 ?>
                        <iframe width="590" height="335" src="<?php echo "$exlink"; ?>" frameborder="0" allowfullscreen></iframe>

 

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

O meu php é versão 8.2, ele não suporta o motor mysql, então usei o motor mysqli:

<?php // index.php php 8.2 
// mysql.terminais.videos(id,link)(1,'video1.mp4');
// aqui coloquei o video1.mp4 no diretório raiz do projeto, 
// se fosse colocado numa pasta chamada vídeos
// a tabela vídeos teria que ser cadastrado assim (1,'videos/video1.mp4')
$mysqli=new mysqli("localhost","root","","terminais");
$resultado=$mysqli->query("select * from videos");
while($linha=$resultado->fetch_assoc())
{
  $exlink = $linha['link'];
  ?>
  <iframe width="590" height="335" src="<?=$exlink?>" frameborder="0" allowfullscreen>  
  </iframe>
  <?php
}

 

Edited by Frank K Hosaka
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...