This topic is locked

display downloadable links from files saved in blob format

5/8/2012 6:05:11 AM
PHPRunner General questions
S
Sergej author

Well, i'm trying to do list downloadable links from documents i stored in a blob field of Mysql...
here is what i'm trying to do...
<?php
$sql = "SELECT * FROM UPLOAD ORDER BY Datum DESC, Vrijeme DESC, Kategorija, Podkategorija ";

$rs = CustomQuery($sql);

while ($row = db_fetch_array($rs)) {?>

</p>

<p class="newstitle">&nbsp;</p>

<p class="newsbar"><em>Postavio <?php echo $row["Uploader"]; ?> u grupi <?php echo $row["Kategorija"];?> i podgrupi <?php $row["Podkategorija"];?><?php echo $row["Datum"];?> u <?php echo $row["Vrijeme"];?> </em></p>

<p class="newsText"> <?php echo "<a href=\"getfile.php?table=UPLOAD&field=File&key1=".$row["Ime"]."\">";
}

?>

but i'm not getting downloadable link for the file in question but just "do you want do Download getfile.php???
Can anybody help me...

Sergey Kornilov admin 5/8/2012

Sergej,
post your application to Demo Account and open a ticket at http://support.xlinesoft.com sending your Demo Account URL. 'Demo Account' button can be found on the last screen in the program.
I guess this is something minor, just need to see what HTMl this PHP code generates.