mysql_connect('localhost','brusy_r','iiw9920');
mysql_select_db('brusy2005');
ini_set( 'display_errors', 1 );
$fota = "foto__/".(int)$_GET['id'].".jpg";
$fota2 = "foto__/".(int)$_GET['id'].".gif";
if (file_exists($fota)) {
$url =$fota;
} elseif( file_exists( $fota2 ) ) { $url=$fota2; } else {$url = "http://brusy.pl/images/spacer.gif"; }
list($podpis) = mysql_fetch_row(mysql_query("select nazwapl from teksty_img where id=".(int)$_GET['id']));
$podpisok = str_replace("\'" , " " , $podpis);
$podpisok = str_replace("Fot. " , "Fot. " , $podpisok);
print "
".$podpisok."";
?>