Exemplo n.º 1
0
?>

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>FeRoSch</title>
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
    <link rel="stylesheet" href="css/myStyle.css">
</head>
<body>
<?php 
$menubuilder = new menubuilder();
$menubuilder->print_menu();
$contenbuilder = new contentbuilder();
$contenbuilder->build();
?>

<?php 
if (isset($_GET['complete'])) {
    ?>
    <script type="text/javascript">
        alert(<?php 
    echo $_GET['complete'];
    ?>
);
    </script>
<?php 
}
?>