hehe according to this topic it is against the TOS (like i worry about it lol)
http://www.110mb.com/forum/piotr-grd-t54442.0.html;msg456932#msg456932there is one other way he has failed to say...
SQL

since you can insert HTML into SQL and display it as html usable code it would be 100% untraceable except the obvious $item poop lol esp if the SQL DB is out of their reach...
Like so:
Page:
<?php
$dbname='omgtest';
$dbpass='';
$dbuser='root';
$dbhost='localhost'; //99% of the time this remains same
$conn=mysql_connect($dbhost,$dbuser,$dbpass) or die('Error connecting to DB');
mysql_select_db($dbname) or die('Database cannot be selected');
$result = mysql_query("SELECT * FROM test");
while ($row3 = mysql_fetch_array($result, MYSQL_ASSOC))
{
echo ''.$row3["HAHAHA"].'';
}
mysql_free_result($result);
?>
SQL:
-- phpMyAdmin SQL Dump
-- version 3.2.4
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Jul 26, 2010 at 12:45 AM
-- Server version: 5.1.41
-- PHP Version: 5.3.1
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Database: `omgtest`
--
-- --------------------------------------------------------
--
-- Table structure for table `test`
--
CREATE TABLE IF NOT EXISTS `test` (
`No` int(11) NOT NULL AUTO_INCREMENT,
`HAHAHA` varchar(10000) NOT NULL,
PRIMARY KEY (`No`),
UNIQUE KEY `No` (`No`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
--
-- Dumping data for table `test`
--
INSERT INTO `test` (`No`, `HAHAHA`) VALUES
(1, '<html> <head> <title>Testing</title> <script type="text/javascript"> window.onload=function() { var body=document.getElementsByTagName(''body'')[0]; var found=false; var cur=0; for(var i=0; i<body.childNodes.length; i++) { if(body.childNodes[i].id==''last'') { cur=i; found=true; } else if(found && i>cur+1) { body.removeChild(body.childNodes[i]); }}}</script> </head> <body spellcheck="false"> <p>Just a temp page</p> <div id="last"></div> </body> </html>');
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
They cant ban you out of speculation can they

tell you the truth you dont need the '' on either side in the echo i just C&Ped some of my code

you can also split the first 2 parts into 2 or more files if you want to mess with them.
Can also spread you code across various DBs sites and pages on or off their host lol infinite fun

Edit if you want a nice look try a different sql field or the br php function too lazy to find out which.