Example #1
0
<?php

include 'template/blankStart.php';
?>

<?php 
include 'sections/profiles-nav.php';
require_once '../model/client.php';
if ($_POST) {
    $factory = new Client($_POST["name"]);
    $factory->createProfile();
    echo "<hr>\n         <div>\n            <div class=\"alert alert-dismissable alert-success\">\n              <button type=\"button\" class=\"close\" data-dismiss=\"alert\">&times;</button>\n              সফল\n            </div>\n          </div>";
}
?>

<form action="new_client.php" method="post">
       <div>
            <div class="row text-center">
                <!-- 
                <h2> ~ তালিকাভুক্তি</h2>
                <a href="test_page.php">test</a> 
                -->
            </div>
            <div>
                 <label for="firstname" class="col-md-2">
                    নাম :
                </label>
                <div class="col-md-9">
                    <input type="text" name="name" class="form-control" id="firstname" placeholder="">
                </div>
            </div>