I am getting my hands on webdev at the moment and am facing a strange issue: I have two php includes in one html file. Unfortunately only the first include is working, the second one seems to stop transfering the html code to browser. There is no mistake in the corresponding php files since the html file is loading proplery, once I disable one of the includes. Can somebody explain this issue?
...
<div class="wrapper">
<div class="left">
...
</div>
<div id="div_table" class="center">
<table id="mytable" cellspacing="0" width="100%">
<?php include("../php/table_data.php"); ?>
</table>
</div>
</div>
<div id="div_add_element" title="Add element">
<form id="form_add_element">
<table>
<tr>
<td><label for="id_name">Name</label></td>
<td><input id="id_name" name="name" type="text" width="30"> </input></td>
</tr>
<tr>
<td><label for="id_edition">Edition</label></td>
<td>
<select id="id_edition" name="edition">
<?php include("../php/option_editions.php"); ?>
</select>
</td>
</tr>
</table>
</form>
</div>