include_layout_template("header.php");
?>

<!--The Main Content Here Please-->


<!-- beginnning of main content-->
<div class="container">
	<div class="row-fluid">
		<div class="span9" >
			<h4>Developers Information Page</h4>
	        <hr>	
	 	</div>
	</div>
    <?php 
$credit = Credit::find_by_id(customDecrypt($_GET['id']));
?>
    <form class="form-horizontal credit" id="credit">
					
					<div class="control-group">
						<label class="control-label">Fullname</label>
						<div class="controls">
							<div class="input-prepend">
								<span class="add-on"><i class="icon-user"></i></span>
								<input type="text" id="fullname" name="fullname" placeholder="Fullname" class="input-xlarge" value="<?php 
if (isset($credit->fullname)) {
    echo $credit->fullname;
}
?>
" readonly />
							</div>
Example #2
0
		<!-- //header -->
		<br>
		<br>

		<!-- Content -->
		<div class="row-fluid">

			<?php 
include_layout_template('admin_menu.php');
?>

			<div class="span9">
				<h2>Edit Developer Details</h2>
				<hr>
				<?php 
$credit = Credit::find_by_id(customDecrypt($_POST['cid']));
?>
				<!-- Begining of Credit form -->
				<form class="form-horizontal credit" id="credit">
					
					<div class="control-group">
						<label class="control-label">Fullname</label>
						<div class="controls">
							<div class="input-prepend">
								<span class="add-on"><i class="icon-user"></i></span>
								<input type="text" id="fullname" name="fullname" placeholder="Fullname" class="input-xlarge" value="<?php 
if (isset($credit->fullname)) {
    echo $credit->fullname;
}
?>
" />