如何查找和更新表的内容?

时间:2015-11-04 07:05:53

标签: php html smarty

我目前正在通过他的网站帮助一个朋友,我是通过SVN这样做的,我一直在为他更新信息,但是我遇到了一个日期列表,我找不到源信息,所以我无法更新它

下面是我认为指向我要更新的代码的代码$item.ClassHours如何找到源信息的位置?

<table class="stripe-table" border="0" cellspacing="0" cellpadding="0">
    <tbody>
        <tr>
            <th>Class Choice</th>
            <th class="clear-bg">Schedule</th>
            <th>Class Hours</th>
            <th class="clear-bg">Level</th>
        </tr>
        <volist name="article.content_complex.part_time" id="item">
            <notempty name="item.Schedule">
                <tr>
                    <notempty name="item.ClassChoice">
                        <th <notempty name="item.ClassChoice_rowspan">rowspan="{$item.ClassChoice_rowspan}"</notempty> >{$item.ClassChoice}</th>
                    </notempty>
                    <td>{$item.Schedule}</td>
                    <notempty name="item.ClassHours">
                        <th <notempty name="item.ClassHours_rowspan">rowspan="{$item.ClassHours_rowspan}"</notempty> >{$item.ClassHours}</th>
                    </notempty>
                    <notempty name="item.Level">
                        <td <notempty name="item.Level_rowspan">rowspan="{$item.Level_rowspan}"</notempty> >{$item.Level}</td>
                    </notempty>
                </tr>
            </notempty>
        </volist>
    </tbody>
</table>

0 个答案:

没有答案