shishantpandeyAug 20, 20222 min readHOW TO MAKE A RESPONSIVE AND DYNAMIC CALCULATORFULL FILE HTML <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" />...
shishantpandeyAug 18, 20221 min readFIND POWER OF ANY NUMBER USING PHP<?php $base= 10; $power = 3; $result = pow($base,$power); echo $result; ?> RESULT