Heyho Ich bin neu hier im Forum...
Ich bin derzeit dabei mich mit Twig auseinander zusetzten ...
Leider bin ich auf einige Probleme gestoßen z.B.
Dies ist der code meiner index.php
Dort will ich nun meine validation.php mit require_once 'validation.php' einbinden ..:
Leider bekomme ich nun den Fehler 500 und eine weiße seite
mit require_once siehts so aus:
Meine validation.php sagt folgendes aus:
Ich hoffe mir kann jemand weiter helfen
Vielen Dank schon jetzt an Euch
Ich bin derzeit dabei mich mit Twig auseinander zusetzten ...
Leider bin ich auf einige Probleme gestoßen z.B.
PHP-Code:
<?php
require_once 'lib/Twig/Autoloader.php';
Twig_Autoloader::register();
try{
$loader = new Twig_Loader_Filesystem('home');
$twig = new Twig_Environment($loader, array(
//'debug' => TRUE,
'cache' => 'compilation_cache',
'auto_reload' => TRUE
));
$template_file = "default.html";
if (!empty($_GET["p"])){
$template_file = $_GET["p"].".html";
}
$template = $twig->loadTemplate($template_file);
$docdatajson = '[{"Beispiel"}]';
$docdata = json_decode($docdatajson, true);
$template->display(array(
'pageTitle' => 'TitelBeispiel',
'docs' => $docdata
));
}catch (Exception $e) {
die ('ERROR: ' . $e->getMessage());
}
?>
Dort will ich nun meine validation.php mit require_once 'validation.php' einbinden ..:
Leider bekomme ich nun den Fehler 500 und eine weiße seite
mit require_once siehts so aus:
PHP-Code:
<?php
require_once 'validation.php';
require_once 'lib/Twig/Autoloader.php';
Twig_Autoloader::register();
try{
$loader = new Twig_Loader_Filesystem('home');
$twig = new Twig_Environment($loader, array(
//'debug' => TRUE,
'cache' => 'compilation_cache',
'auto_reload' => TRUE
));
$template_file = "default.html";
if (!empty($_GET["p"])){
$template_file = $_GET["p"].".html";
}
$template = $twig->loadTemplate($template_file);
$docdatajson = '[{"Beispiel"}]';
$docdata = json_decode($docdatajson, true);
$template->display(array(
'pageTitle' => 'TitelBeispiel',
'docs' => $docdata
));
}catch (Exception $e) {
die ('ERROR: ' . $e->getMessage());
}
?>
PHP-Code:
<?php
require_once "./conf/dataConfig.php";
require_once "./functions.php";
function subscribe($email) {
if($email) {
$eintrag = "INSERT INTO subscribe (email) VALUES ('$email')";
$eintragen = mysql_query($eintrag);
mysql_close($GLOBALS["DB"]);
if ($eintragen)
{
redirect("./");
}
}
}
if($mode = val("mode")) {
switch($mode) {
case "subscribe":
subscribe(val("email"));
}
}
?>
Ich hoffe mir kann jemand weiter helfen
Vielen Dank schon jetzt an Euch
Kommentar