Skip to main content

Posts

How to create a Barcode Using PHP Barcode 128 Generator

A barcode is an optical, machine-readable, representation of data, the data usually describes something about the object that carries the barcode.We will use PHP to generate Barcode in this tutorial. In this script, we are using coding which will generate barcodes in barcode format Code 128 . First, we will create index.php which will ask for the user input for which Barcode has to be created PHP Barcode Generator <fieldset><legend>Detail Informations</legend><form action="createbarcode.php" method="post"><b>Enter Your Code </b><input name="barcode" type="text" /><input type="submit" value="Create Barcode" /></form></fieldset> Now we will create createbarcode.php which will call function from Barcode code128 class for creating barcode <? php include('barcode128.php'); // include php barcode 128 class // design our barcode display echo

How To Update Infomation On AAdhar

Aadhaar is now mandatory for many essential tasks such as filing of income tax returns (ITRs). It is, therefore, paramount for Aadhaar holders to check and ensure that their details fed into the Aadhaar database are accurate. But do you know how to check Aadhar Card status online?   Enrolment for an obtaining an Aadhaar number or updates in details given on the biometrics-based identity takes up to 90 days for completion. This was said by UIDAI or Unique Identification Authority of India, which issues the 12-digit Aadhaar card, on microblogging site Twitter. The status of an individual’s Aadhaar card can be determined easily through the internet by making use of the UIDAI’s online portal as well as through one’s mobile phone via an SMS or text message. Both methods are hassle-free processes and are extremely simple to use.Therefore, we bring to you a step-by-step guide on how to check Aadhar card status along with all the frequently asked questions about the same.

Setting a Custom 404 Error Page in .htaccess

We have to handle error page request by .htaccess like if someone requesting for 404,500 type of request/errors. These are some of the most common errors: 401 – Authorization Required 400 – Bad request 403 – Forbidden 500 – Internal Server Error 404 – Wrong page To handle these request/errors follow below code. # Error pages handling errorDocument 401 http://www.youwebsite.com/error_401.html errorDocument 400 http://www.youwebsite.com/error_400.html errorDocument 403 http://www.youwebsite.com/error_403.html errorDocument 500 http://www.youwebsite.com/error_500.html errorDocument 404 http://www.youwebsite.com/error_404.html Each time if someone request for wrong page(404) he will be automatically redirected to error_404.html page, You can customize these pages as per you need. If you want to disable whole directory then put below code in your .htaccess file # Disable directory browsing, Nobody directly browse your directory. Options All -Indexes