Just be aware that I changed
< ?php echo $username; ?>
to:
‘ . $username . ‘
Since you are echoing out the html using single quotes, which is the better way to do it, you need to specify the variable of $username outside of the string, and use concatenation ( the period ) to join everything together so you can echo each line correctly.
1 Comment