Collywobbles Posted September 5 Report Share Posted September 5 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> Quote Link to comment Share on other sites More sharing options...
0 Frank K Hosaka Posted September 5 Report Share Posted September 5 (edited) 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 September 5 by Frank K Hosaka Quote Link to comment Share on other sites More sharing options...
Question
Collywobbles
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?
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.