I have this value form database
10:00|10:15|10:30
and I need to replace this symbol | to html list <li>
Like this:
<li><input class="left" type="text" value="10:00" /><div class="del right ">x</div></li>
<li><input class="left" type="text" value="10:15" /><div class="del right ">x</div></li>
<li><input class="left" type="text" value="10:30" /><div class="del right ">x</div></li>
Use
explode(), and then build the list from the resulting array:Which results in:
Adding your inputs is a breeze from here:
Leaving you with the following: