[Solved] How to pass a variable value between 2 php files?


They are several ways to do it, first you can use a GET method, or simply use sessions:
session_start();
$_SESSION['foo'] = $Vid_arr[count($Vid_arr)-5];

0

solved How to pass a variable value between 2 php files?