Last active
October 20, 2022 16:13
-
-
Save estefanionsantos/4fcc87c0c7611072c08b3bc2b41a1af8 to your computer and use it in GitHub Desktop.
input element
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Rubricate\Element\CreateElement; | |
$firstName = new CreateElement('input'); | |
$firstName->setAttribute('type', 'text'); | |
$firstName->setAttribute('name', 'firstName'); | |
$firstName->setAttribute('class', 'form'); | |
$firstName->setAttribute('required'); | |
echo $firstName->getElement(); | |
/* | |
<input type="text" name="firstName" class="form" required /> | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment