Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*================================================================
- _ ____ _____ __ __
- (_) _ \ ___ | _ _ | _ __ __ | \ / |
- | | | _) / __ | | | / _ \ / _ `| | \ / | |
- | | __ / \ __ \ | | __ / (_ | | | | |
- |_|_| |___/ | _ | \ ___ | \ __,_|_| | _ |
- Criado por Bruno da Silva
- www.ips-team.blogspot.com
- Respawn Generator
- ===============================================================*/
- <form action="#" method="post">
- <TEXTAREA name="CODIGO" rows="20" cols="50" tabindex="40"> </TEXTAREA>
- <input type="submit" value="Submit" />
- </form>
- <?php
- if(isset($_POST['CODIGO']))
- {
- $linhasTotais = explode("\n", $_POST['CODIGO']);
- $contarLinhas = count($linhasTotais);
- foreach($linhasTotais as $linhaAtual)
- {
- if(!strlen($linhaAtual))
- {
- break;
- }
- $partesLinha = explode(",", $linhaAtual);
- $contarLinhas--;
- if($contarLinhas)
- {
- echo "{" . $partesLinha[0] . "," . $partesLinha[1] . "," . $partesLinha[2] . "}," . "<br/>";
- }
- else
- {
- echo "{" . $partesLinha[0] . "," . $partesLinha[1] . "," . $partesLinha[2] . "}" . "<br/>";
- }
- }
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement