临淄信息港提供最新的临淄招聘信息、临淄房产信息、临淄二手信息,查信息就上https://10345.cn 。
新闻中心
  当前位置:首页 -> 大千世界 -> phpmps文章页添加信息来源

phpmps文章页添加信息来源

发布时间: 2021-10-16 23:56
Phpmps 是基于PHP + MYSQL的开源分类信息发布系统,经过完善设计并适用于各种服务器环境,如:UNIX、LINUX、WINDOWS等,是一个高效、快速网站解决方案。Phpmps简单实用,用户无需注册,即...

在admin/article.php  第51行添加

$source      = trim($_POST['source']);//文章来源

第65行改为

$sql = "INSERT INTO {$table}article (title,source,typeid,keywords,description,content,listorder,addtime,is_index,is_pro) VALUES ('$title','$source','$typeid','$keywords','$description','$content','$listorder','$addtime','$is_index','$is_pro')";

在admin/article.php  第90行添加

$source      = trim($_POST['source']);//文章来源

第104行改为

$sql = "update {$table}article SET title='$title',source='$source',typeid='$typeid',keywords='$keywords',description='$description',content='$content',listorder='$listorder',is_index='$is_index',is_pro='$is_pro' where id='$id' ";


在admin/模板/edit_article.html  19行添加

 <tr bgcolor="#FFFFFF">
    <td height="25" align="right">来源:</td>
    <td>
<input type="text" name="source" size="60" maxlength="100" value="<?=$article['source']?>"/> (新闻来源,用|分割网站名称和URL。如“<?=$CFG[webname]?>|<?=$CFG[weburl]?>”)
</td>
  </tr>

在admin/模板/add_article.html  19行添加

   <tr bgcolor="#FFFFFF">
    <td height="25" align="right">来源:</td>
    <td>
<input type="text" name="source" size="60" maxlength="100" value="<?=$CFG[webname]?>|<?=$CFG[weburl]?>"/> (新闻来源,用|分割网站名称和URL。如“<?=$CFG[webname]?>|<?=$CFG[weburl]?>/jump.html?url=”)
</td>
  </tr>

在文章页添加

来源:<a href="{$source_arr[1]}" target="_blank">{$source_arr[0]}</a>


在数据加字段 source