I would like to have the link open in a pop-up (without top menu), the link is stored in the database. Here is what works to open in a new browser window using _blank, but the top menu is still showing:
Code: Select all
if ($courses['course_outline']) {
echo '<p><span class="inlineGray">Course Outline: </span><a href="'.$courses['course_outline'].'" target="_blank">Click Here</a></p>';
}Code: Select all
<a href="javascript:void(0);" onclick="window.open('.$courses['course_outline'].','PageName','location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=630,height=400')">