I have an array I want to add the phrase "and more... just ask!" to the end of.
From what I understand, array_push will do this, but I can't figure it out.
I tried adding just this, but got an error:
$specificunique = array_push($specificunique, "and more... just ask!");
then this and got an error:
$andmore = "and more... just ask!";
$specificunique = array_push($specificunique, $andmore);
then this and got an error:
$andmoreline = "and more... just ask!";
$andmore = array($andmoreline);
$specificunique = array_push($specificunique, $andmore);
I know the answer is a simple one, but I can't figure this one out.