Пример #1
0
<?php

include_once "inc/webpage.php";
$webpage = new WebPage();
$webpage->setOption_AddFeatureJavascript();
$webpage->head();
$item_number = 0;
function _add($headline, $additionaltext, $additionalhtml = "")
{
    global $item_number;
    $item_number++;
    ?>
<div class="group">

<div class="head" onclick="toggleFeatureItem( <?php 
    echo $item_number;
    ?>
 );">
<?php 
    // IE7 removes the space between the sign and the text if split to more than one line
    ?>
<code><span id="feature-sign-<?php 
    echo $item_number;
    ?>
">+</span>&nbsp;</code><?php 
    echo $headline;
    ?>
</div>

<div id="feature-more-<?php 
    echo $item_number;