I'm newbie of php and sorry for this question but how can i move (using PHP) a selected item to div?
<div id="btn"></div>
<ul>
<li class="selected">Alfa</li>
<li>Beta</li>
<li>Gamma</li>
<li>Delta</li>
<li>Epsilon</li>
<li>Zeta</li>
</ul>
I want to move the li.selected to the div#btn. I tried with echo "<li class=selected></li>";
but doesn't work.
Any help is appreciated! Thank you!