Look at the image:
MysystemhasthosebasicfunctionbuttonsofaCRUDwhichareincludedinthatpartofthetablebya<?phprequire("funcoes.php"); ?>
.
However, doing require
is showing ("")
as seen by the Element inspector, and consequently, a spacing is appearing that causes the contents of the included to be shifted downward, such as in a line break.
Can you tell me why, when calling this require
, these quotes automatically move the contents down?
Included file code:
<?php require ('sessao.php'); ?>
<div class="btn-group">
<button class="btn btn-small btn-success tip editar" data-original-title="Ver e editar" name="editar" id="editar" value="<?=$fetch['id']; ?>">
<span class="icon-refresh icon-white"></span></button>
<button class="btn btn-small btn-warning tip" data-original-title="Arquivar" name="arquivar" id="arquivar" value="<?=$fetch['id']; ?>">
<span class="icon-folder-open icon-white"></span></button>
<button class="btn btn-small btn-danger tip" data-original-title="Excluir" name="excluir" id="excluir" value="<?=$fetch['id']; ?>">
<span class="icon-trash icon-white"></span></button>
</div>
<input type="hidden" name="identidade" value="<?=$fetch['id']; ?>" />
<input type="hidden" name="municipios" value="<?=$fetch['cod_cidades']; ?>" />