如何将PHP变量传递给html语法类名

如何将PHP变量传递给html语法类名

本文介绍了如何将PHP变量传递给html语法类名?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在html语法中传递php变量,

低于代码错误....

How to pass php variable in html syntax,
below code was wrong....

<div class="lid <?=$row["class_name"]?>">
     text
</div>


推荐答案

基于:

Based on the documentation:

要启用此语法,您可以执行一个

To enable this syntax you can do one of the following


  • 在您的php.ini文件中设置 short_open_tag = 1

  • 在您的.htaccess文件中添加 php_value short_open_tag 1
  • set short_open_tag = 1 in your php.ini file
  • add php_value short_open_tag 1 in your .htaccess file

如果这两个都不可用,您必须使用完整的php标志和echo

If neither of these are available you will have to use a full php flag with an echo

<?php echo $row['class_name']; ?>

这篇关于如何将PHP变量传递给html语法类名?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-24 01:47