Help for this page

Select Code to Download


  1. or download this
    <script>
    malicious_code_to_do_something_nasty
    </script>
    
  2. or download this
    $text = "my name is john q user\n";
    $text =~ s/^my name is (.*?) .*$/$1/;
    # removes "my name is ", saves the next word, essentially, into $1, re
    +moves the rest
    print "hello, $text!\n";
    # prints "hello, john!\n"