przy robieniu miniaturki wyskakuje mi taki blad
Warning: Cannot modify header information - headers already sent by (output started at /home/users/boya/public_html/ba/index2.php:11) in /home/users/boya/public_html/ba/page/dodajfoto04.inc.php on line 102
mimo to miniaturka sie robi i zapisuje

wiec nie wiem co jest nie tak oto kod
<?php $upa = $_FILES['file']['name']; $file = \"./grafika/wasze04/duze/\".$upa.\"\"; $obrazek_minn = \"$upa\"; if(!$max_width) $max_width = 100; if(!$max_height) $max_height = 2000; $width = $size[0]; $height = $size[1]; $x_ratio = $max_width / $width; $y_ratio = $max_height / $height; if(($width <= $max_width) && ($height <= $max_height)) { $tn_width = $width; $tn_height = $height; } else if(($x_ratio * $height) < $max_height) { $tn_width = $max_width; } else { $tn_height = $max_height; } $src = imagecreatefromjpeg($file); $dst = imagecreatetruecolor($tn_width, $tn_height); imagecopyresampled($dst, $src, 0, 0, 0, 0, $tn_width, $tn_height, $width, $height); imagejpeg($dst, \"./grafika/wasze04/\".$obrazek_minn); ?>
pozdrawiam
TOMEK