interesuje mnie taki link

w miejsce kropek liczby id
http://www.twojeforum.pl/infusions/usergalerie/view_usergalerie.php?user_id=..&photo..
`<?php /* Created for PHP-FUSION 6.00 Copyright (c) 2005 Petter Paulsson Gets it´s name from panel administration. */ $result = dbquery("SELECT panel_name FROM ".$db_prefix."panels WHERE panel_filename = 'latest_images_panel'"); if (dbrows($result) != 0) { $data = dbarray($result); $panel_name = $data['panel_name']; } openside($panel_name); $result = dbquery("SELECT * FROM ".$db_prefix."photos ORDER BY photo_id DESC LIMIT 0,4"); if (dbrows($result) != 0) { while($data = dbarray($result)) { $itemsubject = trimlink($data['photo_id'], 23); $itemdescription = trimlink($data['photo_title'], 23); echo "<center> <a href='".BASEDIR."photogallery.php?photo_id=".$data['photo_id']."' class='gallery'> <img src='".PHOTOS."album_".$data['album_id']."/".$data['photo_thumb1']."' title='".$data['photo_title']."' alt='".$data['photo_title']."' border='0' width='35' height='35' > </a> </a>\n"; } } else { } closeside(); ?>