Singsys blog: PHP

Calling Procedure of Function

 

There are three procedures to call a function.
1. Normal Calling Procedure: If a function calls any other function or any function is called by another function, it is referred as normal calling procedure of function.
For Example: If the body of function func1() contains calling statement of func2() so that control first of all will execute func1() and when it will find calling statement of func2() it will jump to the body of func2() to execute its body. After complete execution of called function control will return to the calling function.

 

(more…)

How to Set-up Magento Google Analytics

Magento Google Analytics

 

Google Analytics is a free Google service which allows web masters and business owners to monitor traffic, track page views and sales conversions. Google Analytics provides detailed statistics about the web traffic and is the most popular and best website traffic tracking tool used by website owners.
Magento is one the most popular Ecommerce platforms for building a stunning e-commerce website. It is widely used by developers in e-commerce web development. We can set up Magento Google Analytics to gain insights into which page of our ecommerce website gets maximum views, less traffic and many more traffic analysis features.

 

(more…)

How to implement Getty Images api with Connect’s API solutions

Getty Images APIs enable seamless integration of Getty Images expansive content, powerful search and rich metadata directly into your internal workflows, products and services. With Connect’s API solutions, you can fully control, customize and scale as you grow. The Connect API uses JSON over HTTP POST to allow you to build applications capable of search and download on Getty Images using an active download agreement. (more…)

Use App.config file to make connection with database in C# window based Applications

Creating a database connection string from app.config is a very common practice used in C# windows based application. Watch the below video or follow the simple steps to make connection with database in C# window based application using App.config file. (more…)

Use consistent naming convention in programming to easily understand the source code

In computer programming, naming convention might be considered as a set of rules for choosing the identifiers to denote variables, types and functions & methods names in source code and project documentation. The purpose for using this naming convention is only to reduce the effort needed to read and understand the source code and to also to enhance the code appearance by using appropriate and concise keys.

(more…)