how to change a php variable into a int then add 50 to it for reuse -
how change height variable numeric value can add 50 , reuse it?
list($width,$height) = getimagesize($img);
have @ php documentation. getimagesize() returns array of values, index 0 , 1 contain numeric representations of width , height of image.
Comments
Post a Comment