[Solved] Open New Tab / New Window


You need to add target attribute:

echo '<a href="'. $fileStorage . $row['file'] .'" target="_blank">'. htmlentities('Click Here', ENT_COMPAT, 'UTF-8') .'</a><br />';

_blank => Opens the linked document in a new window or tab

solved Open New Tab / New Window