Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2019
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. <?php
  2.  
  3. $firstpart = [
  4. "rank" => "Bronze",
  5. "price" => "9.99",
  6. "month" => "Monthly",
  7. "description" => "Lorem ipsum passases, and more recently win with desktop",
  8. "small_text1" => "100 hours",
  9. "small_text2" => "Online support",
  10. "small_text3" => "300GB diskpace",
  11. "small_text4" => "100 email adress",
  12. "small_text5" => "Mysql database",
  13. "button" => "GET STARTED"
  14.  
  15. ];
  16. print_r($firstpart);
  17.  
  18. echo "<br>";
  19. echo "<br>";
  20.  
  21. $secondpart = [
  22. "rank" => "Silver",
  23. "price" => "19.99",
  24. "month" => "Monthly",
  25. "description" => "Lorem ipsum passases, and more recently win with desktop",
  26. "small_text1" => "100 hours",
  27. "small_text2" => "Online support",
  28. "small_text3" => "300GB diskpace",
  29. "small_text4" => "100 email adress",
  30. "small_text5" => "Mysql database",
  31. "button" => "GET STARTED"
  32.  
  33. ];
  34. print_r($secondpart);
  35.  
  36.  
  37. echo "<br>";
  38. echo "<br>";
  39.  
  40. $thirdpart = [
  41. "rank" => "Gold",
  42. "price" => "29.99",
  43. "month" => "Monthly",
  44. "description" => "Lorem ipsum passases, and more recently win with desktop",
  45. "small_text1" => "100 hours",
  46. "small_text2" => "Online support",
  47. "small_text3" => "300GB diskpace",
  48. "small_text4" => "100 email adress",
  49. "small_text5" => "Mysql database",
  50. "button" => "GET STARTED"
  51.  
  52. ];
  53. print_r($thirdpart);
  54. echo "<br>";
  55. echo "<br>";
  56. $forpart = [
  57. "rank" => "PREMIUM",
  58. "price" => "39.99",
  59. "month" => "Monthly",
  60. "description" => "Lorem ipsum passases, and more recently win with desktop",
  61. "small_text1" => "100 hours",
  62. "small_text2" => "Online support",
  63. "small_text3" => "300GB diskpace",
  64. "small_text4" => "100 email adress",
  65. "small_text5" => "Mysql database",
  66. "button" => "GET STARTED"
  67.  
  68. ];
  69. print_r($forpart);
  70.  
  71.  
  72. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement