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='feedback' method='post' enctype='multipart/form-data' action='../../enews/index.php'> <input name='enews' type='hidden' value='AddFeedback'> <tr> <td width='16%' height=25 bgcolor='ffffff'><div align="right">您的姓名:</div></td> <td bgcolor='ffffff'><input name='name' type='text' size='42'> (*)</td> </tr> <tr> <td width='16%' height=25 bgcolor='ffffff'><div align="right">职务:</div></td> <td bgcolor='ffffff'><input name='job' type='text' size='42'></td> </tr> <tr> <td width='16%' height=25 bgcolor='ffffff'><div align="right">公司名称:</div></td> <td bgcolor='ffffff'><input name='company' type='text' size='42'></td> </tr> <tr> <td width='16%' height=25 bgcolor='ffffff'><div align="right">联系邮箱:</div></td> <td bgcolor='ffffff'><input name='email' type='text' size='42'></td> </tr> <tr> <td width='16%' height=25 bgcolor='ffffff'><div align="right">联系电话:</div></td> <td bgcolor='ffffff'><input name='mycall' type='text' size='42'> (*)</td> </tr> <tr> <td width='16%' height=25 bgcolor='ffffff'><div align="right">网站:</div></td> <td bgcolor='ffffff'><input name='homepage' type='text' size='42'></td> </tr> <tr> <td width='16%' height=25 bgcolor='ffffff'><div align="right">联系地址:</div></td> <td bgcolor='ffffff'><input name='address' type='text' size="42"></td> </tr> <tr> <td width='16%' height=25 bgcolor='ffffff'><div align="right">信息标题:</div></td> <td bgcolor='ffffff'><input name='title' type='text' size="42"> (*)</td> </tr> <tr> <td width='16%' height=25 bgcolor='ffffff'><div align="right">信息内容(*):</div></td> <td bgcolor='ffffff'><textarea name='saytext' cols='60' rows='12'></textarea> </td> </tr> <tr> <td bgcolor='ffffff'></td> <td bgcolor='ffffff'><input type='submit' name='submit' value='提交'></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='feedback' method='post' enctype='multipart/form-data' action='../../enews/index.php'> <input name='enews' type='hidden' value='AddFeedback'> <tr> <td width='16%' height=25 bgcolor='ffffff'><div align="right">您的姓名:</div></td> <td bgcolor='ffffff'><input name='name' type='text' size='42'> (*)</td> </tr> <tr> <td width='16%' height=25 bgcolor='ffffff'><div align="right">职务:</div></td> <td bgcolor='ffffff'><input name='job' type='text' size='42'></td> </tr> <tr> <td width='16%' height=25 bgcolor='ffffff'><div align="right">公司名称:</div></td> <td bgcolor='ffffff'><input name='company' type='text' size='42'></td> </tr> <tr> <td width='16%' height=25 bgcolor='ffffff'><div align="right">联系邮箱:</div></td> <td bgcolor='ffffff'><input name='email' type='text' size='42'></td> </tr> <tr> <td width='16%' height=25 bgcolor='ffffff'><div align="right">联系电话:</div></td> <td bgcolor='ffffff'><input name='mycall' type='text' size='42'> (*)</td> </tr> <tr> <td width='16%' height=25 bgcolor='ffffff'><div align="right">网站:</div></td> <td bgcolor='ffffff'><input name='homepage' type='text' size='42'></td> </tr> <tr> <td width='16%' height=25 bgcolor='ffffff'><div align="right">联系地址:</div></td> <td bgcolor='ffffff'><input name='address' type='text' size="42"></td> </tr> <tr> <td width='16%' height=25 bgcolor='ffffff'><div align="right">信息标题:</div></td> <td bgcolor='ffffff'><input name='title' type='text' size="42"> (*)</td> </tr> <tr> <td width='16%' height=25 bgcolor='ffffff'><div align="right">信息内容(*):</div></td> <td bgcolor='ffffff'><textarea name='saytext' cols='60' rows='12'></textarea> </td> </tr> <tr> <td bgcolor='ffffff'></td> <td bgcolor='ffffff'><input type='submit' name='submit' value='提交'></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!