
Search In
File uploads is not difficult, it is easy to upload files or Images to the particular Folder. But before uploading the files ,you have to configure "php.ini" File. So, Check your php.ini file and verify the file_uploads directive is set On.
Syntax:
APK uses executable bytecode i.e Dalvik Executable (DEX) files to run an app. The dex file limits the total number of methods in a single dex file to 65,536, including Android sdk methods, library methods, and methods in our code. But sometimes it ex
Interface is the way to get the multiple inheritance.
This means that a class can inherit two or more class.
As java, we can not extend more than one class but we can extend more than one interface.
So Interface is used to have inheritance
But there
To show animation on any view like on ImageView, I am implementing animation to show slide a view from top to bottom.
We need to create an xml file in anim folder. Here name top_bottom.xml
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:
Hi Reader's,
Welcome to FindNerd, today we are going to discuss how to use Recursive In CakePHP?
Basically in CakePHP by default you can get the data from the model or table that you are querying for and the data of the Models that are linked to
Hi,
Here I am adding sliding animation to DialogFragment
First I am adding animation xml in res/anim folder.
Then creating custom style that add to the particular fragmentdialogs's onStart() method.
slidestart.xml
<set xmlns:android="http://
Basically snackbar use to show message like a Toast but here the advantage is we have event to interact
in it.
It shows message on the bottom of the screen. And it will remove when we swipe off.
First of all add this in your gradle file
dependenc
Here is an simple example to add and delete list using angular ng-click
Html -
<div ng-app="nameApp" ng-controller="TitleCtrl">
<ul>
<li ng-repeat="name in names">{{name}}
<a href="" ng-click="removeName(name)"&
Program to Reverse an array without affecting special characters in C++
using namespace std;
bool isAlphabet(char x) // Function returns true if an alphabet
{
return ( (x >= 'A' && x <= 'Z') ||
(x >= 'a' &&am
class LoadImage extends AsyncTask<Void, Void, Void> {
@Override
protected Void doInBackground(Void... urls) {
Bitmap theBitmap = null;
