Beispiel #1
0
<?php

include 'header.php';
?>
<form name="form1" method="post" action="videosAlta.php">
  <label></label>

  <div align="center">
    <input type="submit" name="Submit" value="Agregar Video" />
  </div>
</form>
</br>
<?php 
$objtVideo = new videosClass($idVideos, $url, $id, $comentario);
$rsVideos = $objtVideo->listaVideosFull();
?>

<table width="80%" border="1" cellspacing="0" cellpadding="3">
  <tr>
    <td>&nbsp;</td>
    <td>Descripci&oacute;n</td>
    <td>Modificar</td>
    <td>Eliminar</td>
  </tr>
  <?php 
while ($rwVideos = mysql_fetch_object($rsVideos)) {
    $idVideos = $rwVideos->idVideos;
    ?>
  <tr>
    <td><img src="http://img.youtube.com/vi/<?php 
    echo $rwVideos->id;