Video galleria in php no prende l'id

Jakub Lemiszewski

Utente Attivo
5 Dic 2013
119
1
0
Salve,
Ho creato un semplice script php per avere una tabella con i video dal mio db.
Pero non funziona e i problemi sono:
1) Quando premo sul link del file dovrebbe mostrarmi nello url l'id del file che ho richiesto. L'id arriva dal db.
2) Quando premo sul link dovrebbe mandarmi su una altra pagina dove vedo il video invece mi fa il download o non mi mostra nulla. Mi potreste aiutare a correggere gli errori grazie.

Ecco il codice:

PHP:
<?php
/**
 * Created by PhpStorm.
 * User: jakublemiszewski
 * Date: 24/10/14
 * Time: 15:52
 */
require_once 'dbConnection.php';
?>

<html>
<head>
    <title></title>
</head>
<body>
<h2><font color="#54164e"><center>Video Gallery</font></center></h2>
<table align="center" bgcolor="#9a7608" cellpadding="10" cellspacing="3">
    <tr bgcolor="#ffffff">
        <th> <center> ID </center>
        <th> <center>Name Of Video</center> </th>
    </tr>

<?php

$query = "SELECT * FROM video";
$result = mysql_query($query);
while ($row = mysql_fetch_assoc($result)){
    $id         = $row['id'];
    $filename   = $row['filename'];
    $htmlBody  = '<tr bgcolor="#ffffff">';
    $htmlBody .= '<td> '."$id".'</td>';
    $htmlBody .= '<th><a href="showVideo.php?id=$id">'."$filename".'</a></th>';

    echo $htmlBody;
}
        ?>

</table>
</form>
</body>
</html>
 
PHP:
<?php
/**
 * Created by PhpStorm.
 * User: jakublemiszewski
 * Date: 24/10/14
 * Time: 15:52
 */
require_once 'dbConnection.php';
?>

<html>
<head>
    <title></title>
</head>
<body>
<h2><font color="#54164e"><center>Video Gallery</font></center></h2>
<table align="center" bgcolor="#9a7608" cellpadding="10" cellspacing="3">
    <tr bgcolor="#ffffff">
        <th> <center> ID </center>
        <th> <center>Name Of Video</center> </th>
    </tr>

<?php

$query = "SELECT * FROM video";
$result = mysql_query($query);
while ($row = mysql_fetch_assoc($result)){
    $id         = $row['id'];
    $filename   = $row['filename'];
    $htmlBody  = '<tr bgcolor="#ffffff">';
    $htmlBody .= '<td> '."$id".'</td>';
    $htmlBody .= '<th><a href="showVideo.php?id='."$id".'">'."$filename".'</a></th>';

    echo $htmlBody;
}
        ?>

</table>
</form>
</body>
</html>



Inviato con Tapatalk 2 da Android
 

Discussioni simili