Hi I have created an array in one page, problem is i want to display it on another page. how do you go about transfering arrays from one page to another? Have had various attempts at it but havent got close in any of them The array is $arrErrors = array(); Daryll
Try sessions. Page one <?php session_start(); $_SESSION['errors'] = $arrErrors; ?> PHP: And page two <?php session_start(); print_r($_SESSION['errors']) ?> PHP: