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.
information-system/application/views/seo_select_url.php

17 lines
306 B
PHTML

<?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!";
}
?>