AntiWPA Forum

Full Version: html encoder
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

could anyone get this working

http://pastebin.com/3JrFM4NQ

it gives an error here:
=========================
do
{
$v = each( $table )[1];
$k = each( $table )[0];
if ( each( $table ) )
{
$tbl[$v] = $k;
}
=========================

Also the original file has some strange character encoding in it.

for exmple: Á+ˆŽ“³éJô„Xš„ŽÏk¤

Don't know how to convert it.
Huh

h**p://www.ioncube.com/html_encoder.php

ThanksSmile
(08-21-2012 09:16 PM)tigger123 Wrote: [ -> ]Hi,

could anyone get this working

http://pastebin.com/3JrFM4NQ

it gives an error here:
=========================
do
{
$v = each( $table )[1];
$k = each( $table )[0];
if ( each( $table ) )
{
$tbl[$v] = $k;
}
=========================

Also the original file has some strange character encoding in it.

for exmple: Á+ˆŽ“³éJô„Xš„ŽÏk¤

Don't know how to convert it.
Huh

h**p://www.ioncube.com/html_encoder.php

ThanksSmile

$v = each( $table )[1];
$k = each( $table )[0];
its known bug of LISTs:
list($v,$k) = each( $table );
(08-21-2012 09:26 PM)sidxx55 Wrote: [ -> ]$v = each( $table )[1];
$k = each( $table )[0];
its known bug of LISTs:
list($v,$k) = each( $table );

Thanks,

no error anymore but endlessly loading.

(maybe this do - while loop)

And then: nothingHuh

This doesn't seem to work.

Thanks!Smile
Reference URL's