Answers for "match input field with cnic number in php 7"

-1

input type file pattern attribute in html

<input type="file" name="my-image" id="image" accept="image/gif, image/jpeg, image/png" />
To select only image files, you can use this accept="image/*"

<input type="file" name="my-image" id="image" accept="image/*" />
Posted by: Guest on July-17-2020

Code answers related to "match input field with cnic number in php 7"

Browse Popular Code Answers by Language