Angular Js Tutorial

Refer this video (https://www.youtube.com/watch?v=KhzGSHNhnbI) Install Angular Js in system Run the following commands npm install -g @angular/cli ng new a4app Intall angular js extension for visual studio (Angular 6 snippets) ng serve http://localhost:4200/ Note : angular-cli.json has now been changed to angular.json on angular 6 Go [...]

Read more

Don Marquis

"Every cloud has its silver lining but it is sometimes a little difficult to get it to the mint." Source: Brainy [...]

Alfred Hitchcock

"Always make the audience suffer as much as possible." Source: Brainy [...]

W. C. Fields

"You can't trust water: Even a straight stick turns crooked in it." Source: Brainy [...]

Robert Benchley

"Tell us your phobias and we will tell you what you are afraid of." Source: Brainy [...]

How to get the client IP address in PHP?

How can I get the client IP address using PHP? I want to keep record of the user who logged into my website through his/her IP address. Source: Stackoverflow [...]

mysql_fetch_array()/mysql_fetch_assoc()/mysql_fetch_row() expects parameter 1 to be resource or mysqli_result, boolean given

I am trying to select data from a MySQL table, but I get one of the following error messages: mysql_fetch_array() expects parameter 1 to be resource, boolean given or [...]

Sort Multi-dimensional Array by Value [duplicate]

Possible Duplicate: How do I Sort a Multidimensional Array in PHP How can I sort this array by the value of the "order" key? Even though the values are currently [...]

When should I use require_once vs include?

In PHP: When should I use require vs. include? When should I use require_once vs. require? Source: Stackoverflow [...]

How should I ethically approach user password storage for later plaintext retrieval?

As I continue to build more and more websites and web applications I am often asked to store user's passwords in a way that they can be retrieved if/when the user has an issue [...]

I never really understood: what is CGI?

CGI is a Common Gateway Interface. As the name says, it is a "common" gateway interface for everything. It is so trivial and naive from the name. I feel that I understood this [...]