fork download
  1. <?php
  2. $list_channel = "http://w...content-available-to-author-only...e.com/channel/1/,http://w...content-available-to-author-only...e.com/channel/2/,https://w...content-available-to-author-only...e.com/watch?v=ZdP0KM49IVk";
  3. $channels = explode(',', $list_channel);
  4.  
  5. $class="active";
  6.  
  7. $primerRegistro= true;
  8.  
  9. foreach ($channels as $key => $value){
  10.  
  11. if($primerRegistro){
  12. ?>
  13.  
  14. <li class="<?php echo $class; ?>"><span data-target="#<?echo $key?>">Option <?echo $key?></span></li>
  15. <?php
  16.  
  17. <?php
  18. $primerRegistro= false;
  19. }
  20. else{
  21.  
  22. ?>
  23. <li class=""><span data-target="#<?echo $key?>">Option <?echo $key?></span></li>
  24. <?php
  25.  
  26. }
  27. ?>
  28.  
  29.  
  30. <?php
  31. }
  32. ?>
Runtime error #stdin #stdout #stderr 0.01s 82560KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
PHP Parse error:  syntax error, unexpected '<' in /home/pd41QI/prog.php on line 17