Skip to content
Snippets Groups Projects
Commit 178c35bd authored by goujonpa's avatar goujonpa
Browse files

datefield - begin

parent 7720cb5b
No related branches found
No related tags found
No related merge requests found
<?php
{
public function html() {
$html = '<div class = "form-group">
<label for = "form'.$this->name.'">
<input type = "date" name = "'.$this->name.'" value ="'.$this->value.'"> '.ucfirst($this->name).'
</label>
</div>';
return $html;
}
public function validate()
{
/*if (isset($_POST[$this->name]))
{
$_POST[$this->name] = htmlspecialchars($_POST[$this->name]);
if (preg_match("#^0[1-68]([-. ]?[0-9]{2}){4}$#", $_POST[$this->name]))
{
$this->value = $_POST[$this->name];
return true;
}
*/
return false;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment