i am trying to do something very simple, like adding strings of words and parts of code to a variable to display in an email when called.
I am trying to create a welcome to the user when they are emailed their password that they forgot, (eg 'Hello Joe, here is your password: bloggs'), but i cannot get the correct format in the variable. here is the code i have written already:
$message = ("Hello " . $myrow['first_name'] ", here is your password: " . $myrow['password']);
I also want to add html code to the variable, for example paragraph tags to format the text. How do i do this?? and what am i doing wrong.
Thanks