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

HTML Example

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

PHP Example that Would be on Something like a form-process.php File

if(isset($_POST[‘action’]) && $_POST[‘action’] == ‘register’))
{

Read more…

To Top ↑