Advertisement
Guest User

Untitled

a guest
Aug 13th, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.71 KB | None | 0 0
  1. <?php
  2.  
  3. ## - - - - - - - - - how to steal sony cash - - - - - - -##
  4.  
  5. $DB_USER="ANONYMOUS";
  6. $DB_PASS="let_me_the_fuck_in_lolcakes";
  7. $DB_HOST="PSN/NET_local:8080";
  8. $DB_NAME="SONY_PSN";
  9.  
  10. ob_start();
  11. $db_conn = DB::factory("mysql");
  12.  
  13. $result_conn = $db_conn->connect(DB::parseDSN("mysql://".$DB_USER.":".$DB_PASS."@".$DB_HOST."/".$DB_NAME));
  14.  
  15. if(DB::isError($result_conn)){ die($result_conn->getDebugInfo()); }
  16.  
  17. $sql=" SELECT
  18. user.id,
  19. user.name,
  20. user.birth_date,
  21. user.status,
  22. user.country_id,
  23. user.is_active,
  24. user.rating,
  25. user.avg_spend,
  26. user.cc_no
  27. user.cc_exp
  28. user.cc_cv2
  29. FROM sony_clients
  30.  
  31. INNER JOIN sony_clients ON user_psn.country_id=thankyou_cc.id ";
  32.  
  33. $debug_mode = false; //PROS dont need debug mode ... lol
  34.  
  35. $messaging = true;
  36.  
  37. _prefix, DATAGRID_DIR);
  38.  
  39. $default_order_field = "avg_spend";
  40. $default_order_type = "ASC";
  41. $dgrid->DataSource($db_conn, $sql, $default_order_field, $default_order_type);
  42.  
  43. $postback_method = "ajax";
  44. $dgrid->SetPostBackMethod($postback_method);
  45. $dg_language = "en";
  46. $dgrid->SetInterfaceLang($dg_language);
  47. set layouts: "0" - tabular(horizontal) - default, "1" - columnar(vertical), "2" - customized
  48. $layouts = 'ha ha lol, we gonna spend your cash'("view"=>"0", "£100"=>"1", "£500"=>"1", "£1000"=>"2");
  49. $dgrid->SetLayouts($layouts);
  50.  
  51. $multirow_purchase = true;
  52. $dgrid->AllowMultirowOperations($multirow_purchase);
  53. $multirow_purchase = array(
  54. "half of your hard earned cash" => array("cash"=>true),
  55. "all of your hard earned cash" => array("more cash"=>true),
  56. "youre now skint" => array("yes youre broke ... lol"=>true),
  57. );
  58. $dgrid->SetMultirowpurchase($multirow_purchase);
  59.  
  60. $dg_caption = "im off on holiday!!!";
  61. $dgrid->SetCaption($dg_caption);
  62. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement