Erlang – put
In this guide, we will discuss Erlang put. This method is used to add a key value pair to the map. Syntax put(key1,value1,map1) Parameters key1 − This is key which needs…
In this guide, we will discuss Erlang put. This method is used to add a key value pair to the map. Syntax put(key1,value1,map1) Parameters key1 − This is key which needs…
In Fuelphp File uploading is one of the most commonly used features in form programming. FuelPHP provides a special class, Upload to handle uploading of files. Let us learn how to upload…
In this guide, we will discuss Erlang merge. This method is used to merge 2 maps. Syntax merge(map1,map2) Parameters map1 − This is first map which needs to be merged.map2 − This…
FuelPHP in provides an advanced form programming through Fieldset and Fieldset_Field classes. Fieldset provides an object-oriented way to create a form. It has complete support for models. It has built-in support for…
In this guide, we will discuss Erlang keys. This method is used to return all the keys from a map. Syntax keys(map) Parameters map − This is the map for which…
FuelPHP Validation is one of the frequent and most repeated tasks in a web application. The user enters the required data in the form and submits it. Then, the web application…
In this guide, we will discuss Erlang is_key. This method is used to determine if a particular key is defined as a key in the map. Syntax Is_key(key,map) Parameters key −…
FuelPHP Form Programming provides three classes, Form Fieldset,, and Input,, to perform Form programming. Form class provides an option to create all HTML forms elements.Fieldset class provides an option to create html element through…
In this guide, we will discuss Erlang get. This method is used to get the value of a particular key in the map. Syntax get(key,map) Parameters key − This is the…
Model plays an important role in FuelPHP web framework. It represents the business entities of the application of FuelPHP - Models & Database. They are either provided by customers or…