How to get the Angular Posted Request in PHP
The POST method which angular uses send data using JSON format and in PHP Script we will not be able to receive POST data by simply writting $_POST directly.
The POST method which angular uses send data using JSON format and in PHP Script we will not be able to receive POST data by simply writting $_POST directly.
Recursion is a programming technique that allows the programmer to express operations in terms of themselves. In C, this takes the form of a function that calls itself. A useful way to think of recursive functions is to imagine them as a process being performed where one of the instructions is to “repeat the process”. This makes it sound very similar to a loop because it repeats the same code, and in some ways it is similar to looping. On the other hand, recursion makes it easier to express ideas in which the result of the recursive call is necessary to complete the task. Of course, it must be possible for the “process” to sometimes be completed without the recursive call. One simple example is the idea of building a wall that is ten feet high; if I want to build a ten foot high wall, then I will first build a 9 foot high wall, and then add an extra foot of bricks. Conceptually, this is like saying the “build wall” function takes a height and if that height is greater than one, first calls itself to build a lower wall, and then adds one a foot of bricks.
What is HMVC? HMVC stands for Hierarchical Model View Controller. Module Controllers can be used as normal Controllers or HMVC Controllers and they can be used as widgets to help you build view partials. HMVC is an updation of the MVC pattern used for many web applications. It has the salability problems apparent within applications…
Original code author https://github.com/dwisetiyadi/CodeIgniter-PHP-QR-Code I have made some changes to fit into my CI file system
This a library for CodeIgniter Framework to make QR Code from some string given, a porting code from http://phpqrcode.sourceforge.net/.