Is there a way to make the URL links open in a new tab or browser window?
Under PHP coding, there is not a direct method for that,
you have to code it in js within your PHP.
similar to this…
<script>
window.onload = function(){
window.open(url, "_blank"); // will open new tab on window.onload
}
</script>
You might look for better examples on the web.
Allmon3 does not use PHP at all.
@N8JCK - At the moment, that is not supported by the code directly. The contents of menu.ini
are parsed on the server side and then the URL is embedded into a properly formed tag. Right now, you’d have to right-click and choose to open the link in a new tab or window.
If this is something you’d like to see supported, please feel free to open an enhancement request.