I’m having some issues stacking 2 iframes, and I can’t seem to find the error.
Here’s what I’ve got:
[php]var iframeids=[“myframe”]
var iframeids=[“extframe”]
var iframehide=“yes”
var getFFVersion=navigator.userAgent.substring(navigator.userAgent.indexOf(“Firefox”)).split("/")[1]
var FFextraHeight=parseFloat(getFFVersion)>=0.1? 16 : 0[/php]
[php]if ($_SESSION[‘clientlevel’] == “Elliott-Accord”)
{
echo '<font size=“0” color="#333333>For Internal Use Only:
Allowed file types: PDF, JPG
';
{
echo '<font size=“0” color="#333333>For External Use Only:
';[/php]
I can get one iframe (myframe) to show properly when on its own, but when both iframes are entered I either get 1 or neither frame showing.
I inherited this PHP and I feel like I didn’t specify something for the “extframe” someplace, but I can’t seem to figure out where.