Convertir PHP -) HTML

Fermé
Kyo-El - 1 avril 2008 à 13:04
guimton Messages postés 89 Date d'inscription jeudi 27 mars 2008 Statut Membre Dernière intervention 10 avril 2008 - 1 avril 2008 à 13:37
Bonjour,
Une personne m'a créé un design en HTML.
Mais j'aimerais le convertir en PHP.

Est-ce possible de convertir en PHP ?

Voici mon code :
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD><TITLE>(C) Design by Tamashii-Design</TITLE>
<META http-equiv=Content-Type content="text/html; charset=windows-1252">
<LINK
href="kitcss.css"
rel=stylesheet>
<STYLE type=text/css>.menutitle {
BORDER-RIGHT: #e0cda0 1px solid; PADDING-RIGHT: 3px; BORDER-TOP: #e0cda0 1px solid; PADDING-LEFT: 3px; FONT-WEIGHT: bold; MARGIN-BOTTOM: 0px; PADDING-BOTTOM: 3px; BORDER-LEFT: #e0cda0 1px solid; WIDTH: 140px; CURSOR: nw-resize; COLOR: #805569; PADDING-TOP: 3px; BORDER-BOTTOM: #e0cda0 1px solid; BACKGROUND-COLOR: #e0cda0; TEXT-ALIGN: center
}
.submenu {
BORDER-RIGHT: #dbb0b5 1px solid; PADDING-RIGHT: 3px; BORDER-TOP: #dbb0b5 1px solid; PADDING-LEFT: 3px; MARGIN-BOTTOM: 0px; PADDING-BOTTOM: 3px; BORDER-LEFT: #dbb0b5 1px solid; WIDTH: 140px; CURSOR: nw-resize; COLOR: #b30015; PADDING-TOP: 3px; BORDER-BOTTOM: #dbb0b5 1px solid; BACKGROUND-COLOR: #f3ebd9; TEXT-ALIGN: left
}
</STYLE>

<SCRIPT type=text/javascript>

if (document.getElementById){ //DynamicDrive.com change
document.write('<style type="text/css">\n')
document.write('.submenu{display: none;}\n')
document.write('</style>\n')
}

function SwitchMenu(obj){
if(document.getElementById){
var el = document.getElementById(obj);
var ar = document.getElementById("masterdiv").getElementsByTagName("span"); //DynamicDrive.com change
if(el.style.display != "block"){ //DynamicDrive.com change
for (var i=0; i<ar.length; i++){
if (ar[i].className=="submenu") //DynamicDrive.com change
ar[i].style.display = "none";
}
el.style.display = "block";
}else{
el.style.display = "none";
}
}
}

</SCRIPT>

<BODY bgProperties=scrolling leftMargin=0
background=images/rmbg[1].jpg
topMargin=0><font face="Verdana"><map name="FPMap0">
<area href="about.htm" shape="rect" coords="61, 328, 132, 366">
<area href="page3.htm" shape="rect" coords="302, 329, 382, 367">
<area href="page4.htm" shape="rect" coords="399, 328, 502, 364">
<area href="page5.htm" shape="rect" coords="513, 327, 610, 365">
<area href="page6.htm" shape="rect" coords="618, 325, 730, 365">
<area href="page2.htm" shape="rect" coords="231, 330, 297, 367">
<area href="https://www.forumactif.com/" shape="rect" coords="142, 328, 226, 367">
</map>
<div style="position: absolute; width: 137px; height: 1442px; z-index: 1; left: 819px; top: 1px" id="couche1">
<p style="text-align: center">
<img border="0" src="images/menu.gif" width="120" height="50"></p>
<p style="text-align: center">
 </p></div>
<IMG
src="images/top.jpg"
border=0 width="780" height="386" usemap="#FPMap0"> <!--------- SITE-CONTENT ------------>
</font>
<DIV
style="LEFT: 60px; WIDTH: 670; POSITION: absolute; TOP: 378px; height:652">
<p style="text-align: center"><font color="#661802" face="Verdana"><br>
 </font></DIV>
<B>
<DIV></DIV></B></BODY></HTML>


Merci d'avance.
A voir également:

1 réponse

guimton Messages postés 89 Date d'inscription jeudi 27 mars 2008 Statut Membre Dernière intervention 10 avril 2008 10
1 avril 2008 à 13:37
euh....

a part faire un echo de tout ton code....

php est du coté serveur donc tu ne peux pas faire du html en php a part faire un echo.

le plus simple:

tu fais un :

echo <<<HTML

// la tu mets tout ton code

HTML; // attention mets bien cette ligne sans espaces et sans tabulations

@+
1