Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 

Inheritance in PHP

 Inheritance is a principle of OOP'S(Object Oriented Programming Language) in which a user can inherit all the properties of above class. The class who inherit the another class know as Child Class and the class which is being inherited ...

Structured Walkthrough In The Software Testing

What Is Structured Walkthrough In The Software Testing ?   Structured Walkthrough is a kind of static testing approach which is executed in a systematic way among the group of peer to analysis and consult the professional appearances o...

Bootstrap Navbar Menu without Javascript

The navbar menu is used in header or footer and in many cases in the content also. It is responsive by default in bootstrap and take size according to screen size. The navbar get collapsed in case of small devices like mobile phones and there is...

Jquery HTML

We can add html dynamically to our website using jQuery. We use to add html dynamically like when we want on some click function or we want to some other event to add boxes and any other thing. We can use function to add function appen...

How to create a sliding background image?

To show the image sliding ion background i have used two DIV here one act as a wrapper and another contains the background image that slides. In the .wrapper div i have added "overflow:hidden" property that will make this div to hide...

jQuery adding class

We can dynamically add class to the html using the jQuery. It is used when we are adding html dynamically or when at an event we want that css to be called. We can add the css class simply   $("button").click(function(){ $("h1...

Adding method using CakePHP

There are different type of methods that we can use in cakePHP to add functionality. 1. constructClasses()- This method load the model required by the controller. This can be used while in the command line prompt. 2.referrer(mixed $default ...

PayPal - Error server - Double Payment

  Good morning , someone managed to solve the problem of double payment in PayPal ? Thank you

Teamwork Vs Solitude

    Regardless of any given circumstance, “Team Work Works!”  It is not that students are unequipped for studying on in isolation/solitude, it is only that when they study in coordinated effort the synergy dri...

How to Use Price Slider using PHP and jQuery

Hello Reader's! Today in my blog I am going to explain about Price Slider. While shopping every time you see a price slider for filtering data from database. Price Slider is very common in modern website and mainly use of this of an eCommerce...

How to make Expanding/Collapsing Toolbar

In the below example I have created Expanding toolbar in android. Here first I have created CoordinatorLayout in activity_main.xml layout then I have added RecyclerView, CollapsingToolbarLayout and Toolbar with in CoordinatorLayout, In MainActivi...

To upload images in CakePHP

We can add the functionality of browsing images and let the user upload images of its choice to his account. For this functionality we first have to give a browse button in the registration page and then the functionality to it of adding the i...

Magento 1.9.2.1: How to remove product images programtically?

Magento: Remove Product Images in Magento through programming: There is a case when we need to create our own extensions or we have to customize the module, then in that case we need to write custom code for deleting images. Following code wil...

Simple Forgot Password In CakePHP

Simple Forgot Password System In CakePHP Via Email Hello Readers, This blog tutorial will explain how to create a simple Forgot Password system in CakePHP where a users will type email in input box & retrieve new password in their regis...

Different types of jQuery Remove Elements

With the help of jQuery, its easy to remove any html within a single click. jQuery is having 2 methods to remove html elements.   remove() - Removes the selected element (and its child elements) empty() - Removes the child elements ...

How to disable email address link in html email ?

I am writing this blog, because there was a case when I have to send email without the link. For example: If in email I send some data: <p>Your Email id is: amuk.saxena@evontech.com.</p> Now when the email is sent to gmail, then...

Wordpres pagination in Home Page or Front Page?

Hello readers, today we discuss wordpress pagination in Home Page or Front Page. WordPress has the ability to split lists of articles, content, discussions or a single content into multiple pages "paged" navigation. WordPress offe...

How to use Icons and Splash Screen in Phonegap

Icons and splashes both are specified to some platform like android, iOS, windows, blackberry. We can define a icon or splash for a particular platform by the following ways: By specifying the platform attribute:   <icon src="ico...

How to make selected item spinner function in android.

In the below example I have created a Selected Item from spinner in android. Here I have added first aTextView and Spinner in activity_main.xml layout, after then you can see in MainActivity I have used String class and created a ArrayAdapter. I ...

Disabling the text selection with the help of css

In many cases we do not want that the user can select the text of the website for privacy reason. Using CSS property, we can restrict user to do so. Here is the code below: .disable-selection { -moz-user-select: none; /* Firefo...

BA Tips : Best Wireframing Tools

Wireframes are basically pictorial representations that is widely used across varied industries for showcasing the software and its features.Its an important part in Requirement Gathering Phase.  Reading is a boring job, why not instead of m...

CakePHP Associations / Relationship Types Examples

There are 4 Relationship / Associations types in CakePHP: Relationship      Association Type                    &nb...

What Is Localization Testing In Software Testing ?

What Is Localization Testing In Software Testing ? Normally localization testing is executed to confirm the quality of any application's or product’s localization for a specific goal or situation accomplished just on the localized ve...

How to add assignments to Projects in SharePoint 2013 using CSOM?

In SharePoint, each project has its own tasks, assignments, team members etc. While creating projects in SharePoint we have to also create tasks, assignments, team members and custom fields. Here below is the sample code for creating assignmen...

Use vibrancy effect in UITableViewCell like notification center.

1.   It is must to import “NoticationCenter” so that we can use “notificationCenterVibrancyEffect” import NotificationCenter   2. At the time of cell selection do following code in delegate method...

How to convert PDF to JPG Using ImageMagick in PHP

Hello Reader's! Today in my blog I am going to explain how you can convert PDF to JPG image using ImageMagick in PHP. ImageMagick is a open-source software  for displaying, converting, and editing image files in PHP. First you need to...

CakePHP find condition examples

This blog tutorial will explain CakePHP find condition & query examples. let's take a look at some CakePHP find conditions. First, a very simple CakePHP find query that retrieves all records from the User model. Example: $this->User-&g...

To send email using cake email

To send the email using the CakeEmail we first need to configure the smtp configuration that is in the Config/email.php. public $smtp = array( 'transport' => 'Smtp', 'from' => array('youremailaddress@abcd.com' => 'My Site'), ...

CakePHP find and save/add operation

Here is small example which will give you a basic idea about CakePHP find & save operation. <?php class PagesController extends AppController { public $name = 'Pages'; public $uses = array('User'); public function sh...

Forgot Password And Reset Password In CakePHP

Forgot password functionality we usually on the login page of many website. It is used when we we forgot our password and want to recover it. In this blog we are going to recover it by sending an email to the registered email with user acco...

CakePHP Multiple File Upload

Hello readers, if you are looking for a code to upload multiple file in CakePHP where user can upload more than one image through input browse box, then your are in a right place i.e findnerd.com. Here is a quick tutorial which will explain ho...

How to make reset password function in cakePHP

Hi, In this tutorial we can learn that how to make reset password functionality in CakePHP . Most of the times users forget their password for their login credentials, so reset password functionality gives them the authority to change their us...

Mcrypt extension is missing in phpmyadmin Ubuntu 14.04

How to resolve Mcrypt extension is missing in Ubuntu 14.04 ? When I was login to phpmyadmin, then I saw the message "mcrypt extension missing" Try following command: $ sudo updatedb $ locate mcrypt.ini It will show you l...

Using friendly_id gem or slugged id in rails

What friendly gem can do? Friendly_Id is the "Swiss Army bulldozer" of slugging and permalink plugins for Active Record. It lets you create pretty URLs and work with human-friendly strings as if they were numeric ids.   Ra...

Full page background slide show

Hello Readers, To make full page background slide show I have used the below mention code. The code is very simple. If you want full background slide show in your website you can easily use this code. Here is the demo for background images ...

Github: How to add files to git repository via command line

This blog will help you to understand how to add files to your git repository: Step 1: Move the files into local directory which you want to upload to Github that was created when you cloned the repository. Step 2: Open and change the curre...

Github: How to install and setup Github on Ubuntu 14.04

Install Github First update the apt-get package lists with this command apt-get update then install git. $ sudo apt-get update $ sudo apt-get install git Now git has been installed on Ubuntu, lets setup git. How to set up Git No...

CakePHP Naming Conventions

Hello Readers, this blog tutorial will explain how to use naming convention in CakePHP. CakePHP have its own naming convention standards to be used during PHP application development. If you want to create application using CakePHP, first you w...

PHP 5 For Loops

There are two kind of for loops in PHP, one is for() loop & other is foreach(). The for() loop has three sections: init, termination & increment. Syntax: for (initialization; Condition Check ;increment) { code to be executed...

Cakephp 2.7: How to paginate using ajax in cakephp?

Cakephp Ajax Pagination: This blog will help you to paginate page using ajax. First of all create Users table and add some data in it, now create its model, view and controller by following command: $ cd /var/www/html/cakephp/app $ /var/...

How to append text boxes using Angular JS

Hello Reader's if you are looking to append the text boxes in your html form then Angular JS offeres you a very better way to do this than others and It is, We can append  a textbox element in html a form dynamically&...

Cakephp: How to cake bake all in Ubuntu 14.04?

Cakephp's bake console is the fastest way to create models, view and controller. In order to create it first you need to create the table. In this case I am creating Users table:   CREATE TABLE users (     id INT UN...

How to resolve URL rewriting issue in cakephp?

Cakephp: URL rewriting is not properly configured on your server error. How to resolve it on Ubuntu 14.04? I am posting this blog which will help you to resolve the issue (URL rewriting is not properly configured on your server) while installi...

Phpmyadmin: How to install PhpMyAdmin in Ubuntu 14.04

This blog will help you to understand how to install securely phpMyAdmin to manage your databases on Ubuntu 14.04 How to install phpMyAdmin: Step 1: First you need to update the package index on your server with this command:   ...

How to show select box using the Angular JS

  Hello Reader's if you are new to Angular JS then this blog is helpful to you. In this blog you can see how angular js can be used to generate the html. AngularJS enables you to create selectbox based on items in an ar...

How to show uploader status bar for image uploading?

Hello Reader's if you are looking for the image uploader status then this blog is very helpful to you. The main reason why the developers are using this notifications is because for the user having the slow internet connections they don...

Node.js: How to install Node.js on Ubuntu 14.04

This blog will help you to understand how to install node.js Install Node.js First update the apt-get package lists with this command: $ sudo apt-get update Now install the git package using apt-get $ sudo ...

Upgrade Php: How to upgrade php 7 on Ubuntu 14.04

Php 7 release date was December 3, 2015. This blog explains how to quickly upgrade an Apache web server running PHP 5.x (any release) to PHP 7. Run the command to install PPA packages first $ sudo apt-get install python-software-propertie...

How to display rest of the info from file after searching a word

I've been working on a project and I'm stuck at how to display a certain info when I found the word. For example. I want to search the balance sheet data of January 2015 and it will display the rest of the info in the file when found the ...

User-defined Custom Exception in Java.

User-defined Custom Exception in Java Inbuilt class Exception in java can be inherited to create our own exception.   Program creating user defined Exception by extending Exception class: // A Class that represents user-defin...
1 127 292
Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: