I went over many posts regarding this issue, yet can't figure out how to escape this syntax.
I'm simply trying to pop up an editing window via PHP echo of a JavaScript window.open and pass that window a prame from MySQL.
The code is echo'ed out along with a table that is dynamically generated via PHP.
Inside that echo the last line is the problematic one, that I can't seem to get to function properly.
<a href="#" onClick="window.open( "popup.php?message='.$Url.'", "myWindow", "status = 1, height = 350, width = 1022, resizable = 0 " )" class="bstyle">E</a></td>
Note: I have went over many posts here dealing with this issue, and tried out many solutions, none of which worked out. I'm sure this is very simple to handle, yet I have been steering at this thing it is slipping my attention.
<?php echo $Url; ?>will fix it.