</br> should be <br />. why are you using <a>A-D</a> is that suppose to link or are you styling the a tag somehow? If styling the a try using a span in place. You also should just close the php and remove the echo where you are using raw html then reopen the php where you use php again like for instance
PHP Code:
else { echo ' NiseAirTrix sriftas <div id="images_download"><a href="downloads/NiseAirTrix.rar"><img
src="pavyzdziai/niceairtrix.png"
width="400" height="100" align="center" /></a></div>
Yahoo! sriftas <div id="images_download"><a href="downloads/yahoo.rar"><img src="pavyzdziai/yahoo.png" width="400"
height="100" align="center" /></a></div>'; }
?>
Replace with
PHP Code:
else {
?>
NiseAirTrix sriftas
<div id="images_download"><a href="downloads/NiseAirTrix.rar"><img src="pavyzdziai/niceairtrix.png" width="400" height="100" align="center" /></a></div>
Yahoo! sriftas
<div id="images_download"><a href="downloads/yahoo.rar"><img src="pavyzdziai/yahoo.png" width="400" height="100" align="center" /></a></div>
<?php }?>
Edit:
If this doesn't help please be more clear with your question like what your error/problem is. Data not showing, error message, wrong values, and possible provide the code where the get data is being sent from.
Bookmarks