Advertisement
Guest User

Untitled

a guest
Jun 29th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. Array ( [mage_form_post_status] => draft [mage_form_post_type] => post [mage_form_post_permission] => public [mage_form_post_author] => 1 [mage_form_post_redirect] => 0 )
  2.  
  3.  
  4. Array ( [mage_form_post_status] => draft [mage_form_post_type] => post [mage_form_post_permission] => public [mage_form_post_author] => 1 [mage_form_post_redirect] => 88 )
  5.  
  6.  
  7. Array ( [mage_gym_name] => Fanna - test [mage_your_name] => John )
  8.  
  9. foreach($gym_titles as $gym_title){
  10.  
  11. print_r(unserialize($gym_title));
  12. echo '<br><br><br>';
  13.  
  14. }
  15.  
  16. print_r(unserialize($gym_title));
  17. echo '<br><br><br>';
  18.  
  19. foreach($gym_titles as $gym_title){
  20.  
  21. if (array_key_exists('mage_gym_name', $gym_title) {
  22. echo "The 'first' element is in the array";
  23.  
  24. print_r(unserialize($gym_title));
  25. echo '<br><br><br>';
  26.  
  27. } else {
  28. echo 'no such element in this array';
  29. }
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement