//page.php
$arr[0] ="Livingstone"
$arr[1] ="I"
$arr[2] ="Suppose"
//
//elsewhere.php
require("page.php")
$arr[] ="Dr"
//
This gives me an array like this:
"Livingstone","I","Suppose","Dr"
But I want the resulting list to be:
"Dr","Livingstone","I","Suppose"
How can this be done?