essential 7 firefox webmaster plugins

Essential 7 Firefox Webmaster Plugins

Everyone knows that Firefox without its add ons is poor, especially for web developers. From my experience I have chosen for You 7 essential Firefox plugins. Some of them You probably know, More »

jquery

10 Best jQuery Tooltip Plugins – part II

And here is next part of best jQuery tooltip plugins selection. Enjoy! More »

jquery

10 Best jQuery Tooltip Plugins – part I

In all kinds of projects there is a need of using tooltips. To help Your users find a way in service, especially to check out , or just to guide them, present More »

Blog start

Blog start!

Welcome to Web-Dev-Blog.com. You will find here webmastering tips, news about web development and some other usefull stuff connected with web pages creation and advertisement. Also I will try to give You More »

SQL Snippet: Select random row (SQLite, MySQL)

Here is short example, how to select random row in SQLite:

1
SELECT * FROM TABLE ORDER BY RANDOM() LIMIT 1;

and MySQL:

1
SELECT * FROM TABLE ORDER BY RAND() LIMIT 1;

PHP Snippet: Last day of any month

With this snippet You can get last day of any month.

1
2
3
$month = "9";
$year = "2011";
$lastDayOfMonth = date("t", mktime(0, 0, 0, ($month + 1), 0, $year));

PHP Snippet: Show all errors

Here is snippet which will enable displaying all errors in PHP. If You have some interesting snippets mail me: kamil[at]web-dev-blog.com.

1
2
error_reporting(E_ALL);
ini_set('display_errors', '1');

Essential 7 Firefox Webmaster Plugins

essential 7 firefox webmaster plugins

Everyone knows that Firefox without its add ons is poor, especially for web developers. From my experience I have chosen for You 7 essential Firefox plugins. Some of them You probably know, like Firebug or Web Developer, some may be nice surprise for You, and I hope You will find them useful. Those plugins cover creating webpages, testing, debugging, bug fixing, screenshots and SEO. Basically all You need for Your everyday web developer work.

10 Best jQuery Tooltip Plugins – part III

jquery

And here is final four jQuery Tooltip plugins:

 

 

PHP 5.3.7 warning – crypt() function problem

On official PHP page You can read this: Due to unfortunate issues with 5.3.7 (see bug#55439) users should wait with upgrading until 5.3.8 will be released (expected in few days).

10 Best jQuery Tooltip Plugins – part II

jquery

And here is next part of best jQuery tooltip plugins selection. Enjoy!

10 Best jQuery Tooltip Plugins – part I

jquery

In all kinds of projects there is a need of using tooltips. To help Your users find a way in service, especially to check out ;) , or just to guide them, present photos or show unwanted mistakes in forms. And here comes with help jQuery with it’s useful tooltip plugins. In this and next two posts I will present, good looking and working plugins which do this job for You.

Blog start!

Blog start

Welcome to Web-Dev-Blog.com. You will find here webmastering tips, news about web development and some other usefull stuff connected with web pages creation and advertisement. Also I will try to give You some great tips, how to end projects. Starting is easy, ending IT projects is nightmare, so I will try to make it a little more easier for You. Feel free to subscribe RSS feed and connect on Facebook and Twitter. I will try to post 1-3 times a week. Today is coming first usefull post. Stay tuned!