×

Welcome to TagMyCode

Please login or create account to add a snippet.
0
0
 
0
Language: PHP
Posted by: userc865b
Added: Oct 1, 2017 3:26 PM
Views: 2568
Tags: php
  1. <?php
  2. $test=[10,23];
  3.  
  4. form_t();
  5.  
  6. function form_t(){
  7.     global $test;
  8.     print_r($test);
  9.  
  10. }