Maison >Tutoriel CMS >EmpireCMS >Résumez la méthode d'appel des balises universelles sur la page d'informations sur les commentaires d'Empire CMS

Résumez la méthode d'appel des balises universelles sur la page d'informations sur les commentaires d'Empire CMS

silencement
silencementavant
2019-11-29 14:16:062423parcourir

Résumez la méthode d'appel des balises universelles sur la page d'informations sur les commentaires d'Empire CMS

Pour Empire CMS, sa fonction de balise universelle est très puissante ! C'est une balise fréquemment utilisée par de nombreux webmasters qui utilisent Imperial CMS lors de la création de sites Web !
Aujourd'hui, j'ai rencontré un projet qui nécessitait de citer les dernières informations d'une certaine colonne sur la page d'informations sur les commentaires. C'est évidemment le plus simple à mettre en œuvre à l'aide de balises universelles, mais la page d'informations sur les commentaires ne prend pas en charge l'appel de balises universelles !

Après quelques tests, nous avons trouvé la solution suivante :
La fonction appelante de la balise universelle est la fonction sys_GetEcmsInfo dans t_functions.php sous eclass. Les pages dynamiques ne prennent pas en charge les appels de balises mais prennent en charge le code PHP. . Utilisez-le, pour que le problème ait une solution !

Il est recommandé d'étudier le "Tutoriel Empire CMS"

Prenons comme exemple la "Classification des commentaires par défaut" fournie avec Empire CMS. Le code original est le suivant. :

Le code est le suivant :

[!--cp.header--]
<table width=100% align=center cellpadding=3 cellspacing=1 class="tableborder">
<form name=&#39;feedback&#39; method=&#39;post&#39; enctype=&#39;multipart/form-data&#39; action=&#39;../../enews/index.php&#39;>
<input name=&#39;enews&#39; type=&#39;hidden&#39; value=&#39;AddFeedback&#39;>
<tr>
<td width=&#39;16%&#39; height=25 bgcolor=&#39;ffffff&#39;><div align="right">您的姓名:</div></td>
<td bgcolor=&#39;ffffff&#39;><input name=&#39;name&#39; type=&#39;text&#39; size=&#39;42&#39;>
(*)</td>
</tr>
<tr>
<td width=&#39;16%&#39; height=25 bgcolor=&#39;ffffff&#39;><div align="right">职务:</div></td>
<td bgcolor=&#39;ffffff&#39;><input name=&#39;job&#39; type=&#39;text&#39; size=&#39;42&#39;></td>
</tr>
<tr>
<td width=&#39;16%&#39; height=25 bgcolor=&#39;ffffff&#39;><div align="right">公司名称:</div></td>
<td bgcolor=&#39;ffffff&#39;><input name=&#39;company&#39; type=&#39;text&#39; size=&#39;42&#39;></td>
</tr>
<tr>
<td width=&#39;16%&#39; height=25 bgcolor=&#39;ffffff&#39;><div align="right">联系邮箱:</div></td>
<td bgcolor=&#39;ffffff&#39;><input name=&#39;email&#39; type=&#39;text&#39; size=&#39;42&#39;></td>
</tr>
<tr>
<td width=&#39;16%&#39; height=25 bgcolor=&#39;ffffff&#39;><div align="right">联系电话:</div></td>
<td bgcolor=&#39;ffffff&#39;><input name=&#39;mycall&#39; type=&#39;text&#39; size=&#39;42&#39;>
(*)</td>
</tr>
<tr>
<td width=&#39;16%&#39; height=25 bgcolor=&#39;ffffff&#39;><div align="right">网站:</div></td>
<td bgcolor=&#39;ffffff&#39;><input name=&#39;homepage&#39; type=&#39;text&#39; size=&#39;42&#39;></td>
</tr>
<tr>
<td width=&#39;16%&#39; height=25 bgcolor=&#39;ffffff&#39;><div align="right">联系地址:</div></td>
<td bgcolor=&#39;ffffff&#39;><input name=&#39;address&#39; type=&#39;text&#39; size="42"></td>
</tr>
<tr>
<td width=&#39;16%&#39; height=25 bgcolor=&#39;ffffff&#39;><div align="right">信息标题:</div></td>
<td bgcolor=&#39;ffffff&#39;><input name=&#39;title&#39; type=&#39;text&#39; size="42"> (*)</td>
</tr>
<tr>
<td width=&#39;16%&#39; height=25 bgcolor=&#39;ffffff&#39;><div align="right">信息内容(*):</div></td>
<td bgcolor=&#39;ffffff&#39;><textarea name=&#39;saytext&#39; cols=&#39;60&#39; rows=&#39;12&#39;></textarea>
</td>
</tr>
<tr>
<td bgcolor=&#39;ffffff&#39;></td>
<td bgcolor=&#39;ffffff&#39;><input type=&#39;submit&#39; name=&#39;submit&#39; value=&#39;提交&#39;></td>
</tr>
</form>
</table>
[!--cp.footer--]

Prenons maintenant l'exemple de l'appel des 10 dernières informations de la table de données par défaut Le code modifié est le suivant :

Le. le code est le suivant :

[!--cp.header--]
<?php
include("../../class/t_functions.php");
?>
<table width=100% align=center cellpadding=3 cellspacing=1 class="tableborder">
<form name=&#39;feedback&#39; method=&#39;post&#39; enctype=&#39;multipart/form-data&#39; action=&#39;../../enews/index.php&#39;>
<input name=&#39;enews&#39; type=&#39;hidden&#39; value=&#39;AddFeedback&#39;>
<tr>
<td width=&#39;16%&#39; height=25 bgcolor=&#39;ffffff&#39;><div align="right">您的姓名:</div></td>
<td bgcolor=&#39;ffffff&#39;><input name=&#39;name&#39; type=&#39;text&#39; size=&#39;42&#39;>
(*)</td>
</tr>
<tr>
<td width=&#39;16%&#39; height=25 bgcolor=&#39;ffffff&#39;><div align="right">职务:</div></td>
<td bgcolor=&#39;ffffff&#39;><input name=&#39;job&#39; type=&#39;text&#39; size=&#39;42&#39;></td>
</tr>
<tr>
<td width=&#39;16%&#39; height=25 bgcolor=&#39;ffffff&#39;><div align="right">公司名称:</div></td>
<td bgcolor=&#39;ffffff&#39;><input name=&#39;company&#39; type=&#39;text&#39; size=&#39;42&#39;></td>
</tr>
<tr>
<td width=&#39;16%&#39; height=25 bgcolor=&#39;ffffff&#39;><div align="right">联系邮箱:</div></td>
<td bgcolor=&#39;ffffff&#39;><input name=&#39;email&#39; type=&#39;text&#39; size=&#39;42&#39;></td>
</tr>
<tr>
<td width=&#39;16%&#39; height=25 bgcolor=&#39;ffffff&#39;><div align="right">联系电话:</div></td>
<td bgcolor=&#39;ffffff&#39;><input name=&#39;mycall&#39; type=&#39;text&#39; size=&#39;42&#39;>
(*)</td>
</tr>
<tr>
<td width=&#39;16%&#39; height=25 bgcolor=&#39;ffffff&#39;><div align="right">网站:</div></td>
<td bgcolor=&#39;ffffff&#39;><input name=&#39;homepage&#39; type=&#39;text&#39; size=&#39;42&#39;></td>
</tr>
<tr>
<td width=&#39;16%&#39; height=25 bgcolor=&#39;ffffff&#39;><div align="right">联系地址:</div></td>
<td bgcolor=&#39;ffffff&#39;><input name=&#39;address&#39; type=&#39;text&#39; size="42"></td>
</tr>
<tr>
<td width=&#39;16%&#39; height=25 bgcolor=&#39;ffffff&#39;><div align="right">信息标题:</div></td>
<td bgcolor=&#39;ffffff&#39;><input name=&#39;title&#39; type=&#39;text&#39; size="42"> (*)</td>
</tr>
<tr>
<td width=&#39;16%&#39; height=25 bgcolor=&#39;ffffff&#39;><div align="right">信息内容(*):</div></td>
<td bgcolor=&#39;ffffff&#39;><textarea name=&#39;saytext&#39; cols=&#39;60&#39; rows=&#39;12&#39;></textarea>
</td>
</tr>
<tr>
<td bgcolor=&#39;ffffff&#39;></td>
<td bgcolor=&#39;ffffff&#39;><input type=&#39;submit&#39; name=&#39;submit&#39; value=&#39;提交&#39;></td>
</tr>
</form>
</table>
<?php
sys_GetEcmsInfo(0,10,28,0,3,2,0);
?>
[!--cp.footer--]

Parmi eux, l'en-tête include Introduisez le fichier t_functions.php où se trouve la fonction de balise universelle sys_GetEcmsInfo, puis ajoutez la fonction sys_GetEcmsInfo(0,10,28,0,3, 2,0) où les informations doivent être affichées ; faites attention aux paramètres de la fonction et de la fonction de balise universelle sys_GetEcmsInfo. Les paramètres dans les balises correspondent un à un !
Maintenant, le problème est résolu !

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

Déclaration:
Cet article est reproduit dans:. en cas de violation, veuillez contacter admin@php.cn Supprimer