You should use is_array(), not isset. Usefull if myArray is being set from a function that returns an array or a string (-1 on error for example)
This will prevent errors if myArray is declared as a not an array somewhere else.
if(array_exists($myArray)
if(is_array($myArray))
{
array_push($myArray,'my message');
}
else
{
$myArray = array("my message");
}
