Category Archives: HTML


January 24, 2025 10:09 am

How to decode QR code


How to decode QR code
Recently i published a tutorial on How to Generate QR Code in PHP and many readers send emails to decode QR code, so i am writing this article to decode you QR code you have to upload image of QR code and it will show you text inside that code image. This QR code decoder works on HTML 5 file API and canvas tag and used webqr library.

[ Read More ]


January 21, 2025 10:21 am

How to Send Nice HTML Email with PHP


How to Send Nice HTML Email with PHP
If you are making an email software then you must know how to make email templates and send with proper headers in stylish format not a plain email with only text. In PHP with mail() function you can send a simple email but but there is some headers which make it more flexible you can attached files format it in HTML and many more. I am going to explain you how to make an HTML email and give you a demo and script to download.

[ Read More ]


January 19, 2025 10:18 am

How to Create Custom Application for Facebook Pages


How to Create Custom Application for Facebook Pages
Fan pages on Facebook is very useful for business and brands to reach many people on social networks. On Facebook there is very few applications like Photos, Videos and Events, if you want to add more application like contact us and welcome page and as many as you can. This tutorial will explain you how to add application step by step.

[ Read More ]


January 13, 2025 10:03 am

How to block Inappropriate content with javascript validation


How to block Inappropriate content with javascript validation
If you are making a system where peoples come and give there reviews or accept content from public post, there is always some bad peoples write bad words and you have to manually manage these posts. Now with this article you will be able to manage inappropriate words and restrict peoples to write on website.Its a simple and easy to implement program hope you enjoy it.

[ Read More ]


January 6, 2025 10:04 am

How to test Responsive theme in Chrome


How to test Responsive theme in Chrome
I have created a Responsive (Responsive Web Design(RWD) is a web approach aimed create sites to provide an optimal viewing experience easy reading and navigation with a minimum of re-sizing.) HTML theme and too worried how to test it on different devices and verify that how it looks, after full day searching got some hints to test it and the best way i have found is Google Chrome where we have a perfect Developer tool to test it and i did the same and it make my day. Now i am going to share that knowledge in this post and world has to know how to do it.

[ Read More ]


December 15, 2024 10:20 am

File uploading with PHP


File uploading with PHP
This post will explain you that how to upload an image on your web host from browser.First of all you need to make HTML form.

[ Read More ]


December 12, 2024 9:31 pm

Creating the HTML view of a simple CRUD to do list with Angular.js Part 2


Creating the HTML view of a simple CRUD to do list with Angular.js Part 2
Controllers in Angular.js are JavaScript functions which would hold different methods and properties. In our HTML view, we can define the controller that an element uses and all of its child elements would also be able to use the properties and methods of that controller. We can also use those properties and methods in the HTML view through Angular’s data binding or through various built-in directives. Using a controller creates a new child scope for the element in which it is applied and its children.

[ Read More ]