Ben php kullanarak benim ilk web sitesi üzerinde çalışıyorum. Ben iyi bir yol ile geldi, ya da ben öyle ben nereye bağlı css sayfası dahil başa düşündüm. Örneğin, ben bu kod ile göndermek bir form var:
$root = '../';
function died($error)
{
include '../includes/header.php';
echo "We are very sorry, but there were error(s) found with the form your submitted. ";
echo "These errors appear below.<br /><br />";
echo $error."<br /><br />";
echo "Please go back and fix these errors.<br /><br />";
include '../includes/footer.php';
die();
}
Ben ".. /" için değişken $ kök ayarlamak ve daha sonra burada header.php ilgili bir parçasıdır:
<link href="<?php echo $root;?>styles/styles.css" rel="stylesheet" type="text/css" />
Ben stilleri önünde ".. /" koymak düşünürdüm, ama bir şey koymaz. Bu neden çalışmıyor?
Teşekkürler!