如何在echo php上调用一个类

时间:2015-04-03 17:13:35

标签: php

我得到以下一行:

$anuncios3 = "<a class=resize2 target=_blank href=../anuncios/conteo.php?thumbnail=$anuncios_general[2]>".$anuncios_general[3]."</a>"; //publicacion anuncio

我需要包含resize2类,因为它可以帮助我在表格中放置一个文本,但似乎它没有被php考虑,好像它不在那里。

<style type="text/css" >

.resize2{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 20px;
}
</style>

1 个答案:

答案 0 :(得分:1)

对html属性使用单引号作为echo和双引号。

$anuncios3 = '<a class="resize2" target="_blank" href="../anuncios/conteo.php?thumbnail='.$anuncios_general[2].'">'.$anuncios_general[3].'</a>';