<html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.js" type="text/javascript"></script> <style> .hiddenRow { display: none; } </style> <script> function toggleNextRow(row) { var nextRow = $(row).next(); nextRow.toggle(); } </script> </head> <table width='275' border='0' cellspacing='0' cellpadding='0'> <tr onclick="toggleNextRow(this)" > <th style='text-align: left;'><font color='white'>Coming Episodes</font></th> </tr> <tr class="hiddenRow"> <td bgcolor='#FFFFFF'> <?php include '../config.php'; $Sick = json_decode(file_get_contents("http://$base:$sickport/api/$SICKAPI/?cmd=future&sort=date&type=today"), TRUE); ?> <ul> <?php foreach($Sick['data'] as $day) : ?> <?php foreach($day as $item) : ?> <li><?php echo $item['show_name'] ?> </br> <?php echo $item['ep_name'] ?></li> <?php endforeach ?> <?php endforeach ?> <li> <?php echo "<a href=\"http://$base:$sickport/api/$SICKAPI/?cmd=sb.forcesearch\"target=\"_blank\">Click here To Force Search</a>"; ?> </li> </ul> </td> </tr> </form> </td> </table> </p> </body> </html>