Meine Freundin wollte gerne Ihr Layout umgestallten.
Hat ne PHP Seite.
Frage:
Kann man den HTML Code auf PHP umschreiben?
 
	
Alte Layout:
	
Würde ihr gerne helfen, nur mit PHP, sieht es bei mir schlecht aus
Wäre darum einer sooooooooooooooo lieb und würde es für uns machen???

							
						
					Hat ne PHP Seite.
Frage:
Kann man den HTML Code auf PHP umschreiben?
PHP Code:
	
	
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="GENERATOR" content="Phase 5.3">
<meta name="ProgId" content="Phase 5.3">
<title>Purplebutterfly</title>
</head>
<body bgcolor="#2D1C41" topmargin="0" leftmargin="0">
<img border="0" src="back1.jpg" align="left">
<div id="Layer1" style="position: absolute; left: 12px; top: 126px;">
  <iframe allowtransparency="true" src="home.html" name="frame"
 width="770" height="471" frameborder=0 scrolling="yes" noresize style
="border: 0px" style="FILTER: chroma (color=#FF00FF)" ;>
  </iframe>
  </div>
  <div id="Layer2" style="position: absolute;  left: 793px; top: 126px;">
  <iframe allowtransparency="true" src="navi.html" name="navi" width="194"
 height="210" frameborder=0 scrolling="yes" noresize 
style
="border: 0px" style="FILTER: chroma (color=#FF00FF)" ;>
  </iframe>
</div>
</body>
</html> 
PHP Code:
	
	
<?php
error_reporting(E_ALL);
include "config.php";
@mysql_connect(MYSQL_HOST, MYSQL_USER, MYSQL_PASS) OR 
die(mysql_error());
mysql_select_db(MYSQL_DATABASE) OR die(mysql_error());
include "variablen.php";
if(isset($_GET['section'])){
session_start();
}
if(get_magic_quotes_gpc()) {
array_stripslashes($_GET);
array_stripslashes($_POST);
array_stripslashes($_COOKIE);
}
/*if(isset($_SESSION['ID'])) {
$sql="UPDATE users
SET last=NOW()
WHERE ID=".$_SESSION['ID'].";";
$result = mysql_query($sql) OR die(mysql_error());
}*/
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
 <head>
 <title>*Purple Butterfly TCG*</title>
 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <link rel="stylesheet" type="text/css" href="style.css">
 </head>
 <body topmargin="0" leftmargin="0" bgcolor="#e1c5ec" 
style="background-image: url(bild1.jpg);">
<div align="center">
 <table border="0" cellpadding="0" cellspacing="0" 
style="border-collapse: collapse" bordercolor="#4e8ec4" width="800">
  <tr height="1">
   <td width="150"> </td>
   <td width="500"> </td>
   <td width="150"> </td>
  </tr>
  <tr height="350"><td colspan="2">
   <div id="head" style="overflow:auto">
    <?php include "head.php"; ?>
   </div>
   </td>
   <td width="150" valign="top" rowspan="2">
    <div id="navi2" style="overflow:auto">
     <?php include "navi1.php"; ?>
    </div>
   </td>
  </tr>
  <tr height="500">
   <td width="650" valign="top" colspan="2">
    <div id="main" style="overflow:auto">
      <?php include "main.php"; ?>
    </div>
   </td>
  </tr>
 </table>
</div>
 </body>
</html>
Würde ihr gerne helfen, nur mit PHP, sieht es bei mir schlecht aus

Wäre darum einer sooooooooooooooo lieb und würde es für uns machen???

							
						
          
 Moderator
							
						
							
						
							
						
 nur....naja:
Comment