Advertisement
johnburn

Decoded for: [email protected] [config.php]

Aug 17th, 2011
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.23 KB | None | 0 0
  1. <?php
  2.  
  3. $esportazione = "SELECT * FROM photodeluxe_config WHERE ind = 1";
  4. $eseguiesportazione = mysql_query($esportazione);
  5. $risultatiesportazione = mysql_fetch_assoc($eseguiesportazione);
  6. $sharealbum = $risultatiesportazione['sharealbum'];
  7. $commentialbum = $risultatiesportazione['commentialbum'];
  8. $setavatar = $risultatiesportazione['setavatar'];
  9. $sharephoto = $risultatiesportazione['sharephoto'];
  10. $tagphoto = $risultatiesportazione['tagphoto'];
  11. $ratephoto = $risultatiesportazione['ratephoto'];
  12. $commentophoto = $risultatiesportazione['commentophoto'];
  13.  
  14. $fotoalbum = $risultatiesportazione['fotoalbum'];
  15.  
  16. $integrazionespywall = $risultatiesportazione['integrazionespywall'];
  17. $integrazione1col = $risultatiesportazione['integrazione1col'];
  18. $integrazionemegaprofile = $risultatiesportazione['integrazionemegaprofile'];
  19. $likefun = $risultatiesportazione['likefun'];
  20. $nometag = $risultatiesportazione['nicklink'];
  21. $styletemplate = $risultatiesportazione['styletemplate'];
  22.  
  23. $numerocarattericommento = $risultatiesportazione['limitcomment'];
  24.  
  25. $form_categorie = $risultatiesportazione['field1'];
  26. $form_descrizione = $risultatiesportazione['field2'];
  27. $form_tag = $risultatiesportazione['field3'];
  28.  
  29. $formatodata = $risultatiesportazione['formatodata'];
  30.  
  31.  
  32. $formatoname = $risultatiesportazione['formatoname'];
  33.  
  34. $offset = $risultatiesportazione['offset'];
  35.  
  36.       $selezionewidth = "SELECT sys_options.VALUE FROM sys_options WHERE Name = 'bx_photos_file_width'";
  37.       $exewidth=mysql_query($selezionewidth);
  38.       $maxassoc=mysql_fetch_assoc($exewidth);
  39.       $maxwidth=$maxassoc['VALUE'];
  40.      
  41.       $selezionewidth = "SELECT sys_options.VALUE FROM sys_options WHERE Name = 'bx_photos_file_height'";
  42.       $exewidth=mysql_query($selezionewidth);
  43.       $maxassoc=mysql_fetch_assoc($exewidth);
  44.       $maxheight=$maxassoc['VALUE'];
  45.  
  46.     function criptcode($numero) {
  47.     $id0 = rand(1,9);
  48.     $id1 = rand(10000,99999);    
  49.     $mx = $numero*$id0;
  50.     $generacriptcode = $id0.$id1.$mx;
  51.     return ($generacriptcode);
  52.     }
  53.    
  54.     function decriptcode($code) {
  55.     $estrazione0 = substr($code,0,1);
  56.     $estrazione = substr($code,6);  
  57.     $mxestrazione = $estrazione/$estrazione0;
  58.     return ($mxestrazione);
  59.     }
  60.    
  61. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement