Parašė kLx· 2007 Lap. 21 20:11:10
#36
Kur nori sukurk folderį paveiksliukas.gif
sukurk index.php failą ir įrašyk :
<?php
$extList = array(); $extList['gif'] = 'image/gif'; $extList['jpg'] = 'image/jpeg'; $extList['png'] = 'image/png';
$img = null;
$fileList = array();
$handle = opendir('./');
while ( false !== ( $file = readdir($handle) ) ) {
$file_info = pathinfo($file);
if (isset( $extList[ strtolower( $file_info['extension'] ) ] )) { $fileList[] = $file; }
}
closedir($handle);
$imageNumber = time() % count($fileList);
$img = './' . $fileList[$imageNumber];
if ($img!=null) {
$imageInfo = pathinfo($img);
$contentType = 'Content-type: '.$extList[ $imageInfo['extension'] ];
header ($contentType);
readfile($img);
}
?>
Tada į savo sukurtą folderį įkelk index.php ir visus paveiksliukus kokius nori (pavadinimas nesvarbu) ir įkelk į
ftp. O įterpti paprasta ;D <img src=http://tavo saitas.com/paveiksliukas.gif> . :p Paaiškinau kaip kokiam lopui . Nors žinau kad toks nesi.
Redagavo kLx· 2007 Lap. 21 20:11:42