-2
I have a div that looks like this
<div class="tvshowlinks">
1
https://link1.com/qweeqweqw,https://segundolink.com/qweeqweqw.srt
https://link2.com/qweeqweqw,https://segundolink.com/qweeqweqw.srt
https://link3.com/qweeqweqw,https://segundolink.com/qweeqweqw.srt
https://link4.com/qweeqweqw,https://segundolink.com/qweeqweqw.srt
2
https://link1.com/qweeqweqw,https://segundolink.com/qweeqweqw.srt
https://link2.com/qweeqweqw,https://segundolink.com/qweeqweqw.srt
https://link3.com/qweeqweqw,https://segundolink.com/qweeqweqw.srt
https://link4.com/qweeqweqw,https://segundolink.com/qweeqweqw.srt
</div>
wanted to turn into something like below... is possible with php?
<?php
// codigo aqui
?>
<div class="tvshowlinks">
<span>1ª temporada</span>
<a href="https://link1.com/qweeqweqw?legendas=https://segundolink.com/qweeqweqw.srt">Episódio 1</a>
<a href="https://link2.com/qweeqweqw?legendas=https://segundolink.com/qweeqweqw.srt">Episódio 2</a>
<a href="https://link3.com/qweeqweqw?legendas=https://segundolink.com/qweeqweqw.srt">Episódio 3</a>
<--!poderá ter mais de 24 episódios -->
<a href="https://link2.com/qweeqweqw?legendas=https://segundolink.com/qweeqweqw.srt">Episódio 24</a>
<span>2ª temporada</span>
<a href="https://link1.com/qweeqweqw?legendas=https://segundolink.com/qweeqweqw.srt">Episódio 1</a>
<a href="https://link2.com/qweeqweqw?legendas=https://segundolink.com/qweeqweqw.srt">Episódio 2</a>
<a href="https://link3.com/qweeqweqw?legendas=https://segundolink.com/qweeqweqw.srt">Episódio 3</a>
<--!poderá ter mais de 24 episódios -->
<a href="https://link3.com/qweeqweqw?legendas=https://segundolink.com/qweeqweqw.srt">Episódio 24</a>
</div>
You can use for in php to generate these links and number those episodes. !
– Josue Barbosa