Como incluir un div en un PHP?
AUTOR PREGUNTA #1
-
2 personas más tuvieron esta duda Yo también
Esto también te interesa!
PREGUNTAS SIMILARES
#2
<?
if (condicion) {
$capa=' <style type="text/css">
#absolut {
background-color: #993300;
position: absolute;
top: 50px;
left: 50px;
height: 50px;
width: 50px;
}
</style>
<div id="absolut"></div>';
echo $capa;
} ?>