how get value of array in php code -


i want value of array in php , don't ... print_r($_post) :

array  (      [form] => array          (              [site_core_selection] => array                  (                      [0] =>                   )                [domain] => array                  (                      [0] => com                  )                [hidden_premier] =>               [shoping_hidden] =>               [submit] => تائید سفارش              [formid] => 3          )    )

i want value of domain[0] , please me ??

in php simple, try code:

<?php    echo $_post["form"]["domain"][0]; ?> 

Comments

Popular posts from this blog

javascript - jQuery: Add class depending on URL in the best way -

caching - How to check if a url path exists in the service worker cache -

Redirect to a HTTPS version using .htaccess -