Last updated on February 18th, 2022 at 07:41 pmIf you run any website that accepts submitted links, be it a tutorial website, a directory or a bookmarking site, you may find it useful to automatically retrieve information about a URL. Wouldn’t it be nice if you ran a web directory and you could bring up […]
Category: PHP (Page 1 of 15)
Learn PHP programming through practical examples and tutorials. This category covers core PHP concepts, form handling, file opera

How to Create Image thumbnail using PHP
Last updated on April 22nd, 2022 at 10:03 amThe following PHP code will create image thumbnails on the fly . We are using PHP GD2 library. You will need to make sure that you have PHP with at least GD 2.0.1 enabled. Very simple script and very easy to customize. Save the above code as create_thumb.php […]
Last updated on November 29th, 2022 at 03:50 pmLet us take any image type .JPG OR .PNG OR .GIF Here for original image I am using an image named “thank you1.jpg”, For watermark I am using a PNG file named “logo_big.png”thank you1.jpglogo_big.pngAlso refer to Simple Watermark Script Using PHP All you have to do is […]

How to watermark image using php
Last updated on November 29th, 2022 at 03:51 pmThis is a very simple script that watermarks an image with a PNG file using PHP. Just save this PHP file as .php and run this in your website or localhost. Make sure the path specified for your image and the watermark png is correct. In the […]