Thats the variable you want to use for your template inside a "main" template....so for instance I would have a template called
hack_main
PHP Code:
<html>
<body>
<table>
<tr>
<td>$hackbits</td>
</tr>
</table>
</body>
</html>
then you would have another hack for named hack_bits...
hack_bits
PHP Code:
<tr>
<td>$row[field1]</td>
<td>$row[field2]</td>
</tr>
You would then use
eval('$hackbits .= "' . fetch_template('hack_bits') . '";');
To make it it show in the hack_main template...
So, when the script is finished the html would be parsed as...
<html>
<body>
<table>
<tr>
<td>
<tr>
<td>$row[field1]</td>
<td>$row[field2]</td>
</tr>
</td>
</tr>
</table>
</body>
</html>
sorry if this is confusing. I am still learning, so I hope im explaining it right..