Advertisement
Guest User

Untitled

a guest
May 23rd, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. <?php
  2. $pclkey = "betas";
  3. require("library.php");
  4. require("tasks.php");
  5.  
  6. // Do not edit ///////////////////////////
  7. echo "Penguin Name: ";
  8. $Username = trim(fgets(STDIN));
  9. echo "Passowrd: ";
  10. $Password = trim(fgets(STDIN));
  11. echo "Server: ";
  12. $Server = trim(fgets(STDIN));
  13. //////////////////////////////////////////
  14.  
  15.  
  16. $p = new Pickle;
  17. $Server = login;
  18. $stat = $p->connect($Username, $Password, $Server);
  19.  
  20. echo "Adding the non-member items..."
  21. $p->addItem(7021);
  22. $p->addItem(443);
  23.  
  24. echo "All of the non-member items have been added. Would you now like the member items added? [Y/N] ";
  25. if($answer == "Y")
  26. echo "Adding the member items.."
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement