07-10-18, 12:34 AM
جرب هذا
كود :
//$q = "select count(*) \"total\" from files";
$q = "select * from files";
$ros = mysqli_query($link, $q);
//$row = (mysqli_fetch_array($ros));
while ($row = mysqli_fetch_array($ros)) {
echo '<tr>';
echo "<td align=center>";
$profiles = explode(',', $row['profile_image']);
foreach ($profiles as $prof) {
echo "<a title='Click here to download in file.'"
. "href='download.php?id=" . trim($prof) . "'"
. ">" . trim($prof) . "</a>" . ' | ';
}
echo '</td>';
echo '</tr>';
}