[Solved] echo inside another echo


Just put them in there, and put {curly braces} around them:

echo <<<EOS
            <div class="contentBox">
                <div id="column1">
                    <img src="https://stackoverflow.com/questions/23817237/images/gallery/girlthinking.jpg" alt="" id="imagen">
                </div>

                <div id="column2">
                    <p class="tituloanuncio"><b>{$row['title']}</b></p>
                    <p class="descripcionanuncio">{$row['description']}</p>
                </div>

                <div id="column3">
                    <p class="precioanuncio"><b>$1000</b></p>
                    <p class="contactoanuncio"><b>Contacto<br></b>Dueño: Alejandro<br>Telefono: 8331578460<br>[email protected]<br>Facebook</p>
                </div>
            </div>
EOS;

0

solved echo inside another echo