php security
php security
Out of context: Reply #2
- Started
- Last post
- 2 Responses
- Mimio0
You could set those as session variables or you can pass and receive each one through explicit POST containers. Both methods are more secure.
You send the variables in hidden forms elements
and receive them on the next page using this:
$yourVar = $_POST['yourVar'];