fbpx

Free link directories to post your webstite

1 Submit Direct General Directory 2 Web World Guide 3 All Regional Information Directory 4 DoubleDirectory.com 5 Web Link Directory 6 Free Website Inclusion, free web submit online 7 SEO Master Iftekhar khan General Web Directory 8 Crucial Manual 9 Submit Direct General Directory 10 Improve Page Ranking Web Directory 11 Free link directories 12 Human Edited Web Directory 13 Increase...

Read more...

PHP image resizing with fixed height and width

This function will resize images via php gd library. <? function Image($image, $maxWidth, $maxHeight, $padding = 0, $r = 255, $g = 255, $b = 255 ) {     $image = ImageCreateFromString(file_get_contents($image));     if (is_resource($image) === true)     {         $x = 0;         $y = 0;                 $width = imagesx($image);         $height =...

Read more...

Maximizing Search Efficiency: A Guide to Advanced SQL Queries

The provided SQL commands perform a search query on a table named "vehicles" to find entries that match specific criteria. Let's break down each command and its purpose: SELECT command: select concat(`make`, ' ', `model`, ' ', `style`, ' ', `transmission`, ' ', `exterior_color`) as v, match (`make`, `model`, `style`, `transmission`, `exterior_color`, `vehicle_features`, `body_style`) against ('BMW...

Read more...