Testing Included Variables

Question: Can variables be passed into included pages?
Conclusion: Yes, BUT they cannot be sent to another page using $v_var. They must be sent using GET, POST, COOKIE, or SESSION actions.

Set $v_var to 'Hello'

Inside included page.

$v_var + 'you' = Hello you

Set $v_var2 to 'Goodbye'

Variable from included page ($v_var2) = Goodbye

Go to test_included_variables2.php

Send $v_var2 to test_included_variables3.php

Return to Test Directory Home Page