Blog

Archive for the HTML Category


Responsive Image <picture> Element
Posted on September 8, 2020 in HTML by Matt Jennings

Definition of <picture> element according to Mozilla Development Network:
The HTML <picture> element contains zero or more Read more


Using Hidden Input Tags in HTML and PHP for Forms
Posted on June 18, 2015 in HTML, PHP by Matt Jennings

<input type=’hidden’ name=’action’ value=’register’>

if(isset($_POST[‘action’]) && $_POST[‘action’] == ‘register’))
{
//call to validations here
}

To Top ↑