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...

Mysql free text search

select concat(`make`, ' ', `model`, ' ', `style`, ' ', `transmission`, ' ', `exterior_color`) as v, match (`make`, `model`, `style`, `transmission`, `exterior_color`, `vehicle_features`, `body_style`) against ('BMW Black' IN BOOLEAN MODE) as r from vehicles where match (`make`, `model`, `style`, `transmission`, `exterior_color`, `vehicle_features`, `body_style`) against ('BMW Black' IN BOOLEAN MODE)   You would have to add fulltext index to make this working. ALTER...

Read more...