You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
306 B
PHTML
17 lines
306 B
PHTML
8 years ago
|
<?php
|
||
|
if ($url_list)
|
||
|
{
|
||
|
foreach ($url_list as $item)
|
||
|
{
|
||
|
?>
|
||
|
<li><?php echo $item->seo_url ?>
|
||
|
<div class="fR"><a href="javascript:void(0);" onclick="select_seo_url('<?php echo $item->seo_url ?>');" >编辑</a></div>
|
||
|
</li>
|
||
|
<?php
|
||
|
}
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
echo "not found!";
|
||
|
}
|
||
|
?>
|