How to check filesize using PHP.
Welcome back to shortlearner.com . Today we will see how to check the size of specified file. PHP provide us an inbuilt function that is filesize() function. the filesize() function … Read More
Welcome back to shortlearner.com . Today we will see how to check the size of specified file. PHP provide us an inbuilt function that is filesize() function. the filesize() function … Read More
#include<stdio.h> #include<conio.h> struct speed; { int rate; float weight; float distance; }; void main() { struct speed sp; printf(“\n enter distance”); scanf(“%f”,&sp.distance); printf(“\n enter weight”); scanf(“%f”,&sp.weight); if(sp.distance <=40 && sp.weight<=100) … Read More
In this post we will see how can we see the preview of our html code without running the file. Sometimes you may want to see online preview of your … Read More