I'm needing to store a user_id value in a PHP session.
Is it OK for me to do it in the clear
$_SESSION['user_id'] = 10;
Or what methods, that are relatively easy to implement would be best for adding security? (the app doesn't contain any super critical or sensitive info like payment etc so I don't want to go over the top)