where you have base path its where i put the path to the folder right?
the folder is in the root folder
the folder is in the root folder
<?php
require 'dbconfig.php';
$query = "SELECT * FROM tbl_uploads";
$result = mysql_query($query) or die('Error, query failed');
if(mysql_num_rows($result)==0){
echo "Database is empty <br>";
}
else{
while(list($id, $name,$name) = mysql_fetch_array($result)){
$path="/uploads".$name;
echo "<a href='$path'>$name</a><br>";
}
}
?>
Comment