*jancis38* Posted February 16, 2008 Report Share Posted February 16, 2008 nu žēl. Link to comment Share on other sites More sharing options...
Ghetto Posted February 16, 2008 Report Share Posted February 16, 2008 Vari jau kāčāt webspell sourci, un uzlikt kkādu desing`u (pārsvarā visos webspell designos ir day photo) Link to comment Share on other sites More sharing options...
amnezija Posted February 16, 2008 Report Share Posted February 16, 2008 (edited) Ņem šito: rotate.php <?php $folder = '.'; $extList = array(); $extList['gif'] = 'image/gif'; $extList['jpg'] = 'image/jpeg'; $extList['jpeg'] = 'image/jpeg'; $extList['png'] = 'image/png'; $img = null; if (substr($folder,-1) != '/') { $folder = $folder.'/'; } if (isset($_GET['img'])) { $imageInfo = pathinfo($_GET['img']); if ( isset( $extList[ strtolower( $imageInfo['extension'] ) ] ) && file_exists( $folder.$imageInfo['basename'] ) ) { $img = $folder.$imageInfo['basename']; } } else { $fileList = array(); $handle = opendir($folder); while ( false !== ( $file = readdir($handle) ) ) { $file_info = pathinfo($file); if ( isset( $extList[ strtolower( $file_info['extension'] ) ] ) ) { $fileList[] = $file; } } closedir($handle); if (count($fileList) > 0) { $imageNumber = time() % count($fileList); $img = $folder.$fileList[$imageNumber]; } } if ($img!=null) { $imageInfo = pathinfo($img); $contentType = 'Content-type: '.$extList[ $imageInfo['extension'] ]; header ($contentType); readfile($img); } else { if ( function_exists('imagecreate') ) { header ("Content-type: image/jpg"); $im = @imagecreate (100, 100) or die ("Cannot initialize new GD image stream"); $background_color = imagecolorallocate ($im, 255, 255, 255); $text_color = imagecolorallocate ($im, 0,0,0); imagestring ($im, 2, 5, 5, "ESMU BOTS", $text_color); imagepng ($im); imagedestroy($im); } } <img src="/rotate.php"> Un tajā mapē, kur ir šis hujovais skripts samet iekšā visas tavas kūlās bildes un tev afigeņ laidīs randomā un visi domās, kā maz tu tik ātri maini bildes. Būs tev paša megainākā kakainākā dienas bilde. Edited February 16, 2008 by amnezija Link to comment Share on other sites More sharing options...
Titans Posted February 16, 2008 Report Share Posted February 16, 2008 jega vsp tiesam vinjam palidzet? :D:D ja pats pat pashu elementarako nemak.. tas ir tapat ka dot zidaini lasit gramatu kad vinjs alfabetu nezina. .lai iemacas un tad uz priekshu Link to comment Share on other sites More sharing options...
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now