xdcx Posted April 20, 2013 Share Posted April 20, 2013 (edited) how do i echo out this html? <a href="#login" onclick="popup('popUpDiv')">Login</a> in php i tried: echo '<a href="#login" onclick="popup('popUpDiv')">Login</a>'; but that doesnt work because of 'popUpDiv',i tried arrays, it still doesnt seem to work echo "<a href='#login' onclick='popup("."'popUpDiv')'>Login</a>" i must be doing something wrong Edited April 20, 2013 by xdcx Quote Link to comment Share on other sites More sharing options...
requinix Posted April 20, 2013 Share Posted April 20, 2013 Escape the quotes. echo '<a href="#login" onclick="popup(\'popUpDiv\')">Login</a>'; echo "<a href=\"#login\" onclick=\"popup('popUpDiv')\">Login</a>";Or concatenate like you almost had. echo '<a href="#login" onclick="popup(' . "'popUpDiv'" . ')">Login</a>';Or don't echo it. ?> <a href="#login" onclick="popup('popUpDiv')">Login</a> <?php Quote Link to comment Share on other sites More sharing options...
xdcx Posted April 20, 2013 Author Share Posted April 20, 2013 (edited) yea i just got it, thanks though echo '<a href="#login" onclick="popup(\'popUpDiv\')">Login</a>'; Edited April 20, 2013 by xdcx Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.