[Ajuda] É PHP / HTML 06.04.14 13:37
Saporra o html não aparece quando eu coloco esse php em cima :
- Código:
<?php
ini_set( 'display_errors', true );
error_reporting( E_ALL );
// Iniciar session
session_start();
@require_once('/system/config.php');
$installSQL = "ALTER TABLE users ADD eventpoint int(11) NOT NULL DEFAULT '0';";
mysql_query($installSQL) or die(mysql_error());
?>
<!doctype html>
<html lang="br">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>eventPoints | Welcome</title>
<link rel="stylesheet" href="css/foundation.css" />
<script src="js/vendor/modernizr.js"></script>
</head>
<body>
<nav class="top-bar" data-topbar>
<ul class="title-area">
<li class="name">
<h1><a ">eventPoints | Install</a></h1>
</li>
</ul>
<section class="top-bar-section">
<!-- Right Nav Section -->
<ul class="right">
<li class="active"><a href="#">Sistema instalado com êxito!</a></li>
</ul>
</section>
</nav>
<br/>
<center>
<div class="panel" sttyle="width:1100px;text-align:left;">
<h5>Sistema instalado com êxito!</h5>
<p>Agora que o sistema de pontos foi instalado , você poderá usar ele em sua CMS :P</p>
</div>
</center>
<a href="#" class="button [tiny small large]" sttyle="margin-left:1085px;">Finalizar</a>
<script src="js/vendor/jquery.js"></script>
<script src="js/foundation.min.js"></script>
<script>
$(document).foundation();
</script>
</body>
</html>