Hi all this is my first post,
i have been working well in my project all about CRUD but feel bored then looking for another way, but my problem use grocery only when users upload images, i want some setting validations for it, if in php codeignter i use this
$image_info = getimagesize($_FILES["foto"]["tmp_name"]); //get size images
$image_width = $image_info[0]; //get width images
$image_height = $image_info[1]; //get height images
if (($image_height=='350') and ($image_width=='600'))
{
//do uploading
}
the only thing hards allow spesific width=350 and height=600
Thanks for any respond and some tutorial or links
Thanks freddy
