Posts

Codeigniter ! Simple But Powerful

Image
CodeIgniter is a powerful PHP framework with a very small footprint, built for developers who need a simple and elegant toolkit to create full-featured web applications. It is the second largest php framework for website development (first-Laravel). Due to its simplicity, it is the most used framework ever than laravel. Actually these frameworks are only used for developing large scale website. The important thing about this framework is that it is using MVC principle . A MVC or Model View Control framework has a controller that controls all the pages in the website. There can be any number of controller created in codeigniter. The orginal webpages or the contents are placed in the folder named view .  Note : Don't touch the forder named system because it is the soul of the codeigniter Next ⇒

What are backlinks ?

Image
Backlinks (also known as “inbound links”, “incoming links” or “one way links”) are links from one website to a page on another website. Google and other major search engines consider backlinks “votes” for a specific page. Pages with a high number of backlinks tend to have high organic search engine rankings. Backlinks are important for both search engines and end users. For the search engines, it helps them determine how authoritative and relevant your site is on the topic for which you rank. Furthermore, backlinks to your website are a signal to search engines that other external websites are endorsing your content. If many sites link to the same webpage or website, search engines can interpret that content is worth linking to, and therefore also worth ranking higher on a SERP (search engine results page). For many years, the quantity of backlinks was an indicator of a page’s popularity. But today, algorithms (like Google's Penguin update) were created to help ...

Four ways to swap variables in JavaScript !

Image
The above image shows different way of swapping values between two variables.

Foreign key is not working properly ? Why?

Image
Foreign key is not working in Mariadb and new version of MySQL because the foreign key constraint is dropped or new databases stopped support to foreign key due to major problems like data integrity. It has been stopped since before 2020. Currently innodb is the only one database that supports the foreign key constraint. Also foreign keys cannot be used with views in innodb.

Laravel: An extreme Framework

Image
The laravel is a framework of PHP created in the year 2011. Even it was created in 2011, it is one of the biggest and most popular framework that is used in the present year. It is an elegant tool to develop web applications created by Taylor Otwell. Laravel supports the latest version of php. The syntax of laravel is easy and it can manage the entire website. It consists of a template engine called the blade template so that the  user interface design of the webpage can easily be managed. It consists of various inbuilt packages and commands. Most of the edits are configured using the command prompt. 

What is @media ? Responsive?

Image
Do you wonder how a web page is changing it's a style and look on different screen size. It is done by using the @media  rule that used in CSS to change the style and looks of two web pages. Using the @media rule we can set you different styles for different devices. See the following program here I set two different width for three different screens namely desktop/laptop, tablet and smartphone. /* For mobile phones: */ [class*="col-"] { width: 100%; } @media only screen and (min-width: 600px) { /* For tablets: */ .col-s-1 {width: 8.33%;} .col-s-2 {width: 16.66%;} .col-s-3 {width: 25%;} .col-s-4 {width: 33.33%;} .col-s-5 {width: 41.66%;} .col-s-6 {width: 50%;} .col-s-7 {width: 58.33%;} .col-s-8 {width: 66.66%;} .col-s-9 {width: 75%;} .col-s-10 {width: 83.33%;} .col-s-11 {width: 91.66%;} .col-s-12 {width: 100%;} } @media only screen and (min-width: 768px) { /* For desktop: */ .col-1 {width: 8.33%;} .col-2 {width:...

The Dummy Text Lorem Ipsum

Image
 Have you ever seen the name ' Lorem Ipsum ' anywhere. This word is found in different platforms. Do you know why? Because this is a dummy text found anywhere and is used as a dummy when actual text is not available. Most of the websites and web templates are filled with the word lorem ipsum because of the unavailability of the actual text. Lorem Ipsum is a group of dummy words or sentences they does not make a sense. A lorem ipsum can be a sentence , a paragraph or be a group of paragraphs that can be placed anywhere you want if the actual tex is not available for you. An example of a lorem ipsum paragraph is shown below: "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Non curabitur gravida arcu ac tortor dignissim convallis. Quis commodo odio aenean sed adipiscing. Habitasse platea dictumst vestibulum rhoncus est pellentesque elit ullamcorper. Netus et malesuada fames ac. Velit al...

VISUAL STUDIO CODE

Image
A Visual studio code is a free and independent platform in which we can write many programming languages in a single platform.It is a source code editor designed by Microsoft for Windows, Linux and MacOS.This IDE support almost every languages and can write and filter code automatically. It helps to improve our programming skills. The extension pack in the visual studio code made it simple to type programs. Each language in this IDE needs an extension for the proper working and management of elements in the visual studio code. For example ,the java needs an extention pack called the jdk file and c needs its extention. All the extention that are needed is also available on the visual studio code. The visual studio code is integrated in a black background with particular colour to particular elements. In the case of html, tags are coloured as same and their attributes are coloured as same for the program which made them to identify better while writing a big query/program....

Java ! Simple & Powerful

Image
Simple Java is a language that is derived or inspired from c/c++. Therefore it has many similarities with the c languages. That is somewhat why we are telling that java is very simple language.The java has a good memory management system that can deal with the system memory and can deal with the garbages or the cache in the system. Java is very easy to learn, and its syntax is simple, clean and easy to understand. According to Sun, Java language is a simple programming language because: 1.Java syntax is based on C++ (so easier for programmers to learn it after C++). 2.Java has removed many complicated and rarely-used features, for example, explicit pointers, operator overloading, etc. 3.There is no need to remove unreferenced objects because there is an Automatic Garbage Collection in Java. Powerful Java is a very powerful language because it uses the oop principles (Object Oriented Programming). Object Oriented Programming methodology simplifies pro...

Firebase:Powerful platform of database for Android, Ios and web app

Image
Thinking you any free  database management system ! Firebase is a powerful and free Google's own platform. Firebase platform can help you to create apps software which can be both IOS or Android. They can also create web app software which can be used in your website for writing the data from your website to the firebase database. The data enduring through any web forms can be stored in the database by specifying a path to database. First of all to use the firebase you need to apply why the firebase in your app development a platform by using the firebase configuration for firebase cdn. Name the firebase also please send the automatic facility to add firebase to the website or any app software by providing tags firebase in the automatic section of the firebase. It can be find from the the project settings. The the information of data can be stored in the realtime database of the firebase. Here the entered values directly stored in the world firebase rea...