GuidePedia

0
PHP Tutorial For Beginners: Google reCAPTCHA v2 Source Code
PHP Tutorial For Beginners: Google reCAPTCHA v2 Source Code

Complete Guide Video click To View                    if (isset($_POST['submit'])) {           $username = $_POST['username'];            //ReCapcha Area Code            $secretKey = "Your Secret Key";            $responseKey = $_POST['g-recaptcha-r… Read more »

Read more »
01Apr2018

0
How To install Irvine Library in visual studio
How To install Irvine Library in visual studio

Irvine library is for writing Assembly language programs in MASAM, which is used in visual studio for writing the Assembly language code. It contains predefined functions that make assembly language programming easier. Download Irvine 32 library mas… Read more »

Read more »
06May2017

0
The while loop - loops - repetition - control structures
The while loop - loops - repetition - control structures

The for loop does something we know in advance that how many times a loop has to be executed. But if you don’t know that how many times your loop is going to be run then while loop is the choice. Syntax While(condition) {      Statement(s); } The fl… Read more »

Read more »
04May2017

0
The for loop in C++
The for loop in C++

The for loop is the easiest loop in C++ to understand. All elements of this loop are in one place contrary to those remaining two (while, do-while) whose elements are scattered in the program. For loop executes a section of for a certain number of t… Read more »

Read more »
04May2017

0
Loops - Repetitive structures - Control statements
Loops - Repetitive structures - Control statements

Loops cause repetition in your program for certain number of times. While a condition is true this repetition continues and if the condition becomes false, the ends and the control passes to the statements in the body of loop. In loops there is alwa… Read more »

Read more »
04May2017

0
Language Integrated Query (LINQ)
Language Integrated Query (LINQ)

LINQ is a type of query language. A query is a type of expression that retrieves data from a source. Different languages have been developed over time for the various types of data sources, for example SQL for relational databases and XQuery for XML… Read more »

Read more »
04May2017
 
 
Top