pandemonium7386
New member
I have a script that includes about 7 other scripts and it looks like this.
<?php
require('findSiteTblInfo.php');
require('findCarrierTblInfo.php');
require('findSectorTblInfoiDEN.php');
include("findSectorTblInfoCDMA.php");
include("findJobAssignmentTblInfo.php");
include("findSiteAccessTblInfo.php");
include("findComplianceTblInfo.php");
include("findEmployeeTblInfo.php");
include("findAccReceivableTblInfo.php");
?>
Each of these just grabs certain data from that Table and outputs it. What I don't want though, are line breaks once it goes to the next include function. It look like this.
Rooftop | | NA | 39.6523 | -104.9964 | Yes | 9/5 | Door |
CO0508 |
I do not want that break there, and there is no break in any of the scripts that's included. Does anyone know how to stop this?
<?php
require('findSiteTblInfo.php');
require('findCarrierTblInfo.php');
require('findSectorTblInfoiDEN.php');
include("findSectorTblInfoCDMA.php");
include("findJobAssignmentTblInfo.php");
include("findSiteAccessTblInfo.php");
include("findComplianceTblInfo.php");
include("findEmployeeTblInfo.php");
include("findAccReceivableTblInfo.php");
?>
Each of these just grabs certain data from that Table and outputs it. What I don't want though, are line breaks once it goes to the next include function. It look like this.
Rooftop | | NA | 39.6523 | -104.9964 | Yes | 9/5 | Door |
CO0508 |
I do not want that break there, and there is no break in any of the scripts that's included. Does anyone know how to stop this?