
Search In
In this blog we will see how to send a "Simple Text Email" ?
The Php mail( ) function is used to send Emails in PHP.
There are three main parameters we have to pass for sending a simple email and one is optional parameter.
There 3 parameter are
C++ supports multiple inheritance unlike java.
In multiple inheritance a class in C++ can have more than one class as it's parent class i.e., it can inherit property from more than one class.
class Area class Perimeter
A union is a special data type available in C that allows to store different data types in the same memory location just like structures in C.
Union uses a single shared memory location which is equal to the size of its largest data member. It provi
Friend Function
These are special functions which can access the private members of a class.
Private and protected data of class can be accessed from a friend function.
Declaration of Friend Function
class className
{
...... .... ......
Database Normalization
Normalization is a technique of managing records in a database. It is an approach to eliminate data redundancy and anamolies . It also removes data duplicacy in a record. It helps in data update,delete and insert anamolies.Wi
For changing the url of admin from our existing magento store there are two methods we have:
Method 1- First Go to app/etc/local.xml file , open this file with an editor .Now find for the admin node where you have to change the frontName to our
Sometimes we need to open another page on button click.
We can do this in tow ways either by using "window.location" or "window.open()".
Example: In the below example I have put conditions on "blur" event for checking whether the input field is emp
In PHP, many times we found the error i.e. "maximum allocation time exceeds".
For resolving these errors we use php.ini file or we can resolve it buy using our .htaccess file.
1. Using php.ini file For this we have to increase the max_execution
Here I am writing few differences between UnBound Service, UnBound Service and IntentService.
UnBound Service:
1.Basically used for long repetitive task.
2.startService() is the method use to start unbound service.
3.stopService() is the method
Use the alamofire in swift first install the pod file in your project using below steps:
1- open the terminal and run following commands
sudo gem update --system
sudo gem install cocoapods
pod setup
change folder to the current proejct directory
