I've put these in a plugin now
public_html/ow_plugins/mibbit/controllers/index.php
$uri = "http://widget.mibbit.com/?settings=7787dk7a6220876d72d18&server=irc.domain.com%3A{$port}&channel=%23Channel&authmethod=pass&promptPass={$GuestFalseElseTrue}&nick={$nick}";
I've tested the output of this using echo $uri; everything comes out as it should but struggling to get the content of $uri into the html
public_html/ow_plugins/mibbit/views/controllers/index_chat.html
<iframe width="100%" height="475" scrolling="no" seamless="seamless" src="<?php echo $uri; ?>"></iframe>
I've tried {$uri} instead of <?php echo $uri; ?> that doesn't work either. There must be another syntax that can be used here? other than outputting the content of $uri as src everything else is working fine.