PHP expert |
|
ob_start(); moet op de eerste lijn staan. Inlude je geen config of zoiets?
voorbeeld:
---config.php---
<?php
ob_start();
mysql_connect("...", "...", "****");
?>
---index.php---
<?php
include("config.php");
echo "Dit is de index.php pagina";
header("location: ".$link);
?>
<?php include("config.php"); echo "Dit is de index.php pagina"; ?>
--index.php [FOUT]---
<?php
include("config.php"); //als je de ob_start() niet in je config staat tenmiste ^^
ob_start();
echo "Dit is de index.php pagina";
header("location: ".$link);
?>
<?php include("config.php"); //als je de ob_start() niet in je config staat tenmiste ^^ echo "Dit is de index.php pagina"; ?>
Ob_start werkt altijd anders is er iets mis met je server |