php函数不起作用,<li>无法呈现

时间:2015-06-28 20:24:53

标签: javascript php function html-lists

我把一个函数放到php文件中,我想用这个函数在'ul'里面生成一个“li”列表。但是php函数似乎不起作用,'li'没有出现在最终的html中。有人能帮助我吗?很多。

from django.db import models
from django.contrib.contenttypes import generic
from events.models import Event

class Study(models.Model):
    study_event_name = models.CharField(max_length=140)
    events = generic.GenericRelation(Event)
    location = models.CharField(max_length=140)

    def save(self):
        super(Study, self).save

    def __unicode__(self):
        return self.study_event_name

1 个答案:

答案 0 :(得分:0)

添加一些引号并更正<li>标记。

$listli = '<li><a href="forum.php?mod=viewthread&tid='.$list_temp['tid'].
    '" title="'.$list_temp['subject'].'" target="_blank ">'.
    cutstr($list_temp['subject'], 10, $dot = ' ...').'</a></li>';