Font Size in rem and Making Responsive Get link Facebook X Pinterest Email Other Apps August 13, 2020 1 rem = Font-size of the root html elementDefault 1rem = 16pxTo change font-size of html element -> Put in %(1rem=100%)And put font-size in media-query -> in % (accordingly) Get link Facebook X Pinterest Email Other Apps Comments
Image Upload PHP Core or OOPs September 02, 2020 'jobseeker_photo' is the name of the input $file = $FILES['jobseeker_photo']; $fileName = $_FILES['jobseeker_photo']['name']; $fileTmpName = $_FILES['jobseeker_photo']['tmp_name']; $fileSize = $_FILES['jobseeker_photo']['size']; $fileError = $_FILES['jobseeker_photo']['error']; $fileType = $_FILES['jobseeker_photo']['type']; $fileExt = explode('.', $fileName); $fileActualExt = strtolower(end($fileExt)); $allowed = array('jpg', 'jpeg', 'png'); if(in_array($fileActualExt, $allowed)) { if($fileError === 0){ ... Read more
Xampp Customization January 02, 2021 Change Target Project Directory from httpd.conf File Path: C:\xampp\apache\conf\httpd.conf Change Target Project Directory from httpd.conf File Path: C:\xampp\php\php.ini post_max_size, upload_max_filesize, max_exexution_time, max_input_time, memory_limit, max_allowed_packet Read more
Comments
Post a Comment