Designing solutions through programming - March 21 Lesson Notes
What are we going to learn today?[edit]
echo '
<fieldset>
<legend>Edit user</legend>
<form class="form-horizontal" action="update_user.php" method="post">
<div class="form-group">
<label for="inputEmail3" class="col-sm-2 control-label">Email</label>
<div class="col-sm-10">
<input type="email" class="form-control" name="email" id="inputEmail3" placeholder="Email" value="'.trim($row['email']).'">
</div>
</div>
<div class="form-group">
<label for="inputPassword3" class="col-sm-2 control-label">Password</label>
<div class="col-sm-10">
<input type="password" class="form-control" id="inputPassword3" name="password" placeholder="New Password">
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button type="submit" class="btn btn-default">Edit user</button>
</div>
</div>
</form>
</fieldset>
';
|
What is our homework?[edit]
|
|
How am I being assessed today?[edit]
|
||
Standards we are covering today[edit] |
As a computer scientist, you have:[edit]
|
|
Credits[edit] |