Bitirdiğim siteyi php' ye dönüştürme header ve footer ölümünü ayırma

birtanws

Öğrenci
Katılım
27 Şubat 2014
Mesajlar
2
Reaksiyon puanı
0
Puanları
0
slm sitenin html ve css ile olan bölümleri bitti şimdi siteyi dinemik hale getirmek istiyorum header ve footer diye iki ayrı php sayfası açtım css ve html kodlarını içine yapıştırdım içerik bölümünede
kodlarını yazdım ama görüntüleyemedim acemiyim ya videoları izleyerek yapıyorum da burda takıldım

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-*****="Content-Type" **********text/html; charset=utf-8" />
<title>Ortakısalanı.com</title>
<style type="text/css">
#wrapper {
width:980px;
margin-left:auto;
margin-right:auto;
background-color:#FFF ;
}
<?php include("includes/header.php");?>
#container {
background-color:#FFF ;
width:950px;
height:750px;
}




#kategori {
height:40px;
width:200px;
background-repeat:repeat;

}

#menu {
background-color:#FFF ;
width: 210px;
height:750px;
position:absolute;
top:100px;
border:1px solid #000 ;



}
.menu_baslik{
height: 38px;
width: 210px;
background-image:url(images/buton.png) ;
line-height: 36px;
font-family: Verdana, Geneva, sans-serif;
font-size: 13px;
font-weight: bold;
color: #FFF ;
text-decoration:none;
padding-left: 10px;
background-repeat:no-repeat;
position:relative;

}
.menu_baslik:hover{
color:#ED7F22;
}
.menu_icerik ul {
list-style-type: none;
margin: 0px;
padding: 0px;
margin-left:5px;
}
.menu_icerik ul li a {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
color: #000 ;
text-decoration: none;

}
.menu_icerik{
}




#content {
width:730px;
height:750px;
float:right;
background-color:#FFF ;

}
.slayt{
background-color:#F2F2F2;<!--pembe-->
width:700px;
height:300px;
margin-bottom:15px;
margin-left:10px;


}
.icerik{
width:160px;
height:160px;
background-color:#333;
float:left;
margin:10px;



}
.icerik img{
border-radius:5px;
margin-left:5px;
margin-top:5px;
}
.icerik p {
font-size:15px;
text-align:center;
color:#FFF ;

}

<?php include("includes/footer.php");?>

</style>

html kodlarını kopyalamdım
 

Joker_TD

Öğrenci
Katılım
26 Şubat 2014
Mesajlar
6
Reaksiyon puanı
0
Puanları
0
Kod:
<?php include("includes/footer.php");?>    
</style>


Kod:
</style>
<?php 
include("includes/header.php");    
include("includes/footer.php");
?>

Php sorgularını Style dışında çalıştırmayı dene hocam.
 

theramma

Öğrenci
Katılım
28 Şubat 2014
Mesajlar
25
Reaksiyon puanı
0
Puanları
0
Kod:
<?php include("includes/footer.php");?>    
</style>


Kod:
</style>
<?php 
include("includes/header.php");    
include("includes/footer.php");
?>

Php sorgularını Style dışında çalıştırmayı dene hocam.

Hata burada. Bir de css leri html in içinde tutmayın. Ayrı bir dosyaya koyup head bölümünde o dosyayı çağırın.
 
Üst