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

Search In

How to split a string in C++?

// A C++ program for splitting a string using strtok() #include <stdio.h> #include <string.h> int main() { char str[] = "First-Demo-Example"; char *token = strtok(str, "-"); // Returns first token while (token != NUL

Use of json_encode() function in php

 Hi Reader's,  Welcome to FindNerd, today we are going to discuss use of json_encode() function in php. json_encode() is used to convert the array given as it's argument into a JSON string. JSON full form is JavaScript Object Notat

When to start Automation Testing?

While automating GUI one has to be very careful, do not start the automating when the project starts, else you will ends up re-writing the the automation scripts. Many a times vendors provide training and support of automation tools to the resources.

foreach() function in PHP

foreach() function provides an easy way to scan arrays & exactly do the same thing like for loop, so this function is said to be PHP foreach loop. foreach loop works only on arrays. Syntax: foreach ($arrayname as $value) {} Example: In the be

How to generate 8 digit random string password in PHP

Hello Reader's you want to generate the 8 digit password with random characters (lower case, upper case and number), Then this function will work for you. Lets see how genrate the password :- $ASCIRangeFrom = 48; $ASCITo = 122; $MakeRandomInText

How to work on Stored Procedure in SQL

Store Procedure:-- These are set of SQL Statements which are grouped in such a way that they execute to do a certain task and make processing of our application fast. Advantages:- They are stored in precompiled format and therefore are fast. Only

Basic Type of Error in Software

An error cause the correct behavior of software and affect the accuracy. It affect the expected result of application which might because of incorrect requirements implementation or because of invalid data entry by user. Basic Type of errors : 1. F

Html.RenderAction in MVC

While working in MVC you need to sometime work upon the partial view.     Partial view is nothing but like a user control that is used to placed on the pages where something needs to be done again and again.     So creating

Update in MVC Gridview

While working and manipulating the gridview we will work on the different sort of operations that needs to be performed in the gridview.   For doing this we are going to perform the update operation using the model and the action named employe

Ajax calls start failing if my app is inactive; otherwise they work just fine on WiFi

In my Phonegap based hybrid app: Ajax calls start failing if my app is inactive for say a couple of minutes. My connection is WiFi & what happens is ajax calls fail with status 0; but navigator.connection.type still shows WiFi

1 15 90
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: