thanks for the help
the includes file is as below and all is enclosed in php tags.
however adding this to phpinclude_end template breaks the output as you said.
same thing happens if i include the data below directly into a file?
would the
print "<head>";
print "<script>";
portion of the file be creating my problem?if so how can i fix it?
Code:
<?php
/*======================================================================*\
|| #################################################################### ||
|| # v3 SMS System 1.0. by PcFreak [http://at-lantis.de] ||
|| # SMS empfangen auf jeder Seite. ||
|| # Please click install if you used this hack ||
|| #################################################################### ||
\*======================================================================*/
// ##### SMS SYSTEM #####
$smsvorhanden = $DB_site->query_first("
SELECT id_vom_empfaenger
FROM " . TABLE_PREFIX . "sms
WHERE id_vom_empfaenger = $bbuserinfo[userid]
");
if ($smsvorhanden[id_vom_empfaenger] == '')
{}
else
{
print "<head>";
print "<script>";
print "function popsms(){";
print "win = window.open('sms.php?do=sms_lesen','_blank','toolbar=no,location=no,menubar=no,scrollbars=yes,width=550,height=500,resizeable=no,status=no');";
print "}";
print "</script>";
print "</head>";
print "<body onLoad='popsms()'>";
print "</body>";
}
// ##### SMS SYSTEM #####
?>
thanks :nervous: again