Hi i need a simple php script to get text links to hyperlink with code!
example, i have a div box like this!
i need auto transform to something like this:
example, i have a div box like this!
HTML:
<div class="mydiv">
1
1,https://mixdrop.co/f/idvideo,https://example.com/subtitle.srt
2,https://mixdrop.co/f/idvideo,https://example.com/subtitle.srt
3,https://mixdrop.co/f/idvideo,https://example.com/subtitle.srt
...
30,https://mixdrop.co/f/idvideo,https://example.com/subtitle.srt
2
1,https://mixdrop.co/f/idvideo,https://example.com/subtitle.srt
2,https://mixdrop.co/f/idvideo,https://example.com/subtitle.srt
3,https://mixdrop.co/f/idvideo,https://example.com/subtitle.srt
...
30,https://mixdrop.co/f/idvideo,https://example.com/subtitle.srt
</div>
i need auto transform to something like this:
HTML:
<?php
// code here
?>
<div class="mydiv">
<div class="season">Season 1</div>
<a href="https://mixdrop.co/f/idvideo?subtitle=https://example.com/subtitle.srt">Episode 1</a>
<a href="https://mixdrop.co/f/idvideo?subtitle=https://example.com/subtitle.srt">Episode 2</a>
<a href="https://mixdrop.co/f/idvideo?subtitle=https://example.com/subtitle.srt">Episode 3</a>
....
<a href="https://mixdrop.co/f/idvideo?subtitle=https://example.com/subtitle.srt">Episode 30</a>
</div>
<div class="season">Season 2</div>
<a href="https://mixdrop.co/f/idvideo?subtitle=https://example.com/subtitle.srt">Episode 1</a>
<a href="https://mixdrop.co/f/idvideo?subtitle=https://example.com/subtitle.srt">Episode 2</a>
<a href="https://mixdrop.co/f/idvideo?subtitle=https://example.com/subtitle.srt">Episode 3</a>
....
<a href="https://mixdrop.co/f/idvideo?subtitle=https://example.com/subtitle.srt">Episode 30</a>
</div>
</div>