$arrray = array(
$this->_SmailerTyle => "PHPMailer",
$this->_SsendMail => "smtp",
$this->from => "[email protected]",
$this->to => "[email protected]",
$this->subject => "This is example subject",
$this->message => "This is example message",
);
print_r($arrray);
Any one help to convert a single array in multiple variables.
Array ( [] => This is example message )$this->and write'message'$this->...as the index for each value, I assume that either these values are empty or do not exist. This then means that each value is overwriting the previous one and you end up with the array your getting.