I'm building a multi-page form with PHP. I'm storing most of the value's in $_SESSION. Using the following method...
$_SESSION['title'] = $_POST['title'];
It's working fine so far but I'm not sure if it will be able to hold PDFs, videos, ect.
Does the $_SESSION only hold strings & intigers, or can files be stored there?