How do I use single quotes inside single quotes?
问题 Can anyone explain how to make this code work? echo '<div id="panel1-under">Welcome <?php echo "$_SESSION['username']"; ?></div>'; I've tried removing the single quotes ( echo '<div id="panel1-under">Welcome <?php echo "$_SESSION[username]"; ?></div>'; ), but it doesn't work. 回答1: echo "<div id=\"panel1-under\">Welcome ".$_SESSION['username']."</div>"; or echo '<div id="panel1-under">Welcome '.$_SESSION['username'].'</div>'; Quick Explain : You don't have to reopen the tags inside a echo