Validating File Size Before Form Submit (HTML5)

Earlier browsers did not support HTML5 File API, so normally people would use flash or Java Applets to validate file format and sizes in HTML upload forms, and most of us preferred to skip the client part letting server handle the problem.

Responsive Share Buttons CSS and jQuery

Today let’s create a cool looking responsive share buttons for your website contents, which will be adjusted according to the users’ screen size. If you are not satisfied with your current share buttons, you can try this solution. Advantage of creating own set of share buttons is that, you can modify it to your heart content to fit your layout. And you don’t have to rely on bulky scripts that are loaded from anonymous servers, which could also slow down your page significantly.

26 Useful CSS3 Online Generators

If you are a Web Designer, you can cut down the development time by using these handy tools, which can generate nifty CSS3 codes for your web projects, all you have to do is just adjust the settings until you are satisfied with the result, and then copy-paste the generated CSS code in your project. Here I have compiled some of the coolest CSS generators, which I think are useful tools for any web designer.

Creating Simple Form using PHP and MySql

HTML forms are an essential part of the web development process, allowing us to gather data from user inputs. We can use this data to send emails, change interfaces, layouts, or save it directly to a MySQL table. Today, we will create a simple HTML form to collect a user’s name, email, and message text, and use PHP to save the collected data into a MySQL database table. This is a common scenario in web development where we often need to store user data.