WebApp Sec mailing list archives
#!/usr/local/bin/php -qCn <?php $string = "hello there"; $out = ''; for($x=0;$x<strlen($string);$x++){ $out .= "%".dechex(ord($string[$x])); } echo $out."\n"; ?>
By Date By Thread