Форуми / National / Russian / Модули и плагины / Внедрение в Cotonti других движков

Evil
#8977 27.02.2009 17:41
# YuGran : по твоей ссылке

Ссылка доступна.

Временно решил проблему внедрением фрейма в одну из страниц.

<script language="javascript" type="text/javascript">
function iFrameHeight() {
	var h = 0;
	if ( !document.all ) {
		h = document.getElementById('blockrandom').contentDocument.height;
		document.getElementById('blockrandom').style.height = h + 60 + 'px';
	} else if( document.all ) {
		h = document.frames('blockrandom').document.body.scrollHeight;
		document.all.blockrandom.style.height = h + 20 + 'px';
	}
}
</script>

<iframe onload="iFrameHeight()"
	name="iframe"
	src="/db/index.php"
	width="100%"
	height="900"
	scrolling="no"
	align="top"
	frameborder="0"
	class="wrapper">
	This option will not work correctly. Unfortunately, your browser does not support inline frames.</iframe>


Я думаю можно решить вопрос вставкой в определенном пхп файле строки:

<?php include('/db/index.php'); ?>


Відредаговано: Evil (27.02.2009 20:40, 16 років тому)