04-26-2016, 08:14 PM
Hello,
I am trying to create an input form for date how to do so?
I prefer using animative date like you just need to click the date number and choose the year in order to input the date. How to do so ?
I am trying to create an input form for date how to do so?
I prefer using animative date like you just need to click the date number and choose the year in order to input the date. How to do so ?
PHP Code:
<html>
<title>Blog Form</title>
<br>
<h1>BLOG FORM</h1>
<?php $this->load->helper('form'); ?>
<?php echo validation_errors(); ?>
<?php echo form_open('form'); ?>
<table>
<tr>
<td>Date :</td>
<td><input type="text" name="username" value="" size="50" /></td>
</tr>
<tr>
<td>Upload :<br><br></td>
<td><input type="text" name="username" value="" size="50" /></td>
</tr>
<tr>
<td>Title :</td>
<td><input type="text" name="username" value="" size="50" /></td>
</tr>
<tr>
<td>Content :</td>
<td>
<textarea rows="8" cols="50">
</textarea>
</td>
</tr>
<div><input type="submit" value="Submit" /></div>
</form>
</table>
</html>
" If I looks more intelligence please increase my reputation."