'versteckter' Downloadzähler

Dann mach doch ein Eingabefeld, wo du die ID einträgst.
Beim klick auf 'nen Submitbutton, wird die Anzahl der Downloads ausgegeben

also in etwa so

download.php
PHP:
echo '<form name="count" method="post" action="download.php?link=count" />';
echo '<input type="text" name="songid" />';
echo '<input type="submit" value="Anzahl Downloads" />';

if ($_GET['link']=='count'){
    $songid = $_GET['songid'];
    $sql = "SELECT * FROM songs WHERE songid = ".$songid."";
    $result = mysql_query($sql);
    $echo = mysql_fetch_array($result);
    echo $echo;
}

Musst du nurnoch entsprechend auf deine Datenbank zuschneiden ^^

Danke, aber ich möchte die ID manuell in die Datei selbst einschreiben und dass die Anzahl dann so ausgegeben wird wie hier (funktioniert leider nicht) .

PHP:
<?php
error_reporting(E_ALL);
include("download.php");
?>  
<html>
<head>
<title>Der Remix wurde <?php echo counter('Remix.mp3');?> mal runtergeladen.</title>
<style type="text/css">
<!--
body,td,th {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 10px;
    color: #000000;
}
body {
    background-color: #000000;
    margin-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
}
.Stil1 {color: #FFFFFF}
-->
</style>
<head>
</head>
<body>
<table width="100%" height="100%" border="0" align="center" cellpadding="0" cellspacing="0">
  <!--DWLayoutTable-->
  <tr>
    <td width="100%" height="100%" align="center" valign="middle"><span class="Stil1">Der Remix wurde </span><?php echo counter('Remix.mp3');?><span class="Stil1"> mal runtergeladen.</span></td>
  </tr>
</table>
</body>
</html>
 
Zurück