I will describe my problem with code - it would be the best.
<?
include('configs.php');
require_once 'DBQueries.php';
$con = mysql_connect( $db_host, $db_user, $db_pass );
mysql_query("SET NAMES 'cp1250'") or die('Could not set names');
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db($db_dbname);
$oUnexportedOrders = DBQueries::getInstance()->getUnexportedOrders();
header("Content-Type: text/plain");
while ($aOrderExport = mysql_fetch_assoc ($oUnexportedOrders)){
echo $aOrderExport['data'];
}
What is happening:
- include some stuff
- connection to DB
- get data from DB
- IMPORTANT: set header as Content-Type: text/plain
- IMPORTANT: print text data with echo
Result:
**!!! There are 7 unwanted lines !!!**
line of data
line of data
line of data
line of data
....
Expected result:
line of data
line of data
line of data
line of data
- Expected is lines of data generated by echo inside the for, but without that 7 lines.
QUESTION:
How to do that, what to call when (etc.) to get rid of those unwanted lines?
Thank you.
ob_clean();
will clear out the output buffer, in conjuction withob_start();
That should get rid of any unwanted extra whitespace from included files.