for some reason, the array i made only queries out the last value in the foreach statement like example below
$message = array('hello'=>'there');
$message = array('hello'=>'there');
$message = array('hello'=>'there');
$message = array('hello'=>'there');
foreach ($message as $key => $value) {
echo $key." ".$value;
}
it only queries out hello there once. what am i doing wrong ???