pometek / phpobfuscator

Automatically exported from code.google.com/p/phpobfuscator
0 stars 0 forks source link

nothing has been obfuscated #21

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
<?php if ( !class_exists(banner) ) {

class banner  extends database {
    var $row_num_show;
    var $start_num = 0;
    var $positions;

    function banner() {
        $this->openConnection();
    }

    function categories()
    {

      $sql="select * from banners_position";
      $positions=$this->mysql_fetch_array($sql);
       return $positions;

    }
    function sizes()
    {
    $sql="select * from bannersize";

This is original file and

this is encoded file 
<?php /* This file encoded by Raizlabs PHP Obfuscator
http://www.raizlabs.com/software */ ?>
<?php if ( !class_exists(banner) ) {

class banner  extends database {
    var $row_num_show;
    var $start_num = 0;
    var $positions;

    function banner() {
        $this->openConnection();
    }

    function categories()
    {

      $sql="select * from banners_position";
      $positions=$this->mysql_fetch_array($sql);
       return $positions;

    }
    function sizes()
    {
    $sql="select * from bannersize";
      $sizes=$this->mysql_fetch_array($sql);

Is there any diffrence you can see.
tell me why?

Original issue reported on code.google.com by jatinder...@gmail.com on 18 Mar 2009 at 11:53

Attachments:

GoogleCodeExporter commented 9 years ago
[deleted comment]
GoogleCodeExporter commented 9 years ago
I got the same issue, nothing has been obfuscated.

Original comment by nebi...@gmail.com on 1 Apr 2009 at 4:00