Hello! Question from a "idiot" here...![]()
I am trying to create a block to display text that simply announces a drawing winner. I can't get this block to show up on the home page. This is what I've done so far:
Created block.drawing_winners.html (uploaded to themes/kosmos/blocks)
Next I created block.drawing_winners.php (uploaded to /blocks/):HTML Code:<table width="197" border="0" cellpadding="0" cellspacing="0"> <tr> <td style="background-image: url(<%$tpl_base%>/images/template_23.gif);" class="head"> Latest Drawing Winner</td> <td width="31"><img src="<%$tpl_base%>/images/template_24.gif" alt="" /></td> </tr> </table> <table width="197" border="0" cellpadding="5" cellspacing="0" class="panel-bg"> <tr> <td> <br> <b>Congratulations to<br> <font color="#0000FF">Burinvit A. of<br> Bangkok, Thailand!</font></b></p> <p>He is the lucky winner of our August 2006 Monthly Prize Drawing for a $50.00 Amazon.com<br> Gift Certificate.</p> <p><b>September 2006 Prize:</b><br> $50.00 Amazon.com<br> Gift Certificate</p> <font size="1"><a href="page.php?id=winners">See more winners!</a></font><br /> <br /> </td> </tr> </table>
Lastly, I added the following code to my index.html (using kosmos theme) at the point where I want it to show up (left side).PHP Code:<?php
/**
*
* INDEXU
* Copyright(C), Nicecoder, 2000-2006, All Rights Reserved.
*
* INDEXU(tm) is protected by Indonesia and International copyright laws.
* Unauthorized use or distribution of INDEXU(tm) is strictly prohibited,
* violators will be prosecuted. To obtain a license for using INDEXU(tm),
* please register at Nicecoder home page at http://www.nicecoder.com
*
* Author:
* Dody Rachmat Wicaksono (dody@nicecoder.com)
* M. Zuber (zubby@nicecoder.com)
*
*/
function block_drawing_winners($params) {
if (!$params['template']) {
$params['template'] = 'block.drawing_winners.html';
}
$tpl = new Template;
$tpl->display("blocks/" . $params['template']);
}
?>
What do I do next?HTML Code:<%block_drawing_winners%> <br />
Thank you!
Angie
Thank you!


