Featured
-
Top 5 Features That Make Laravel the Best PHP Framework for Development
Laravel is a free open source Web Framework of PHP
by abhishek.tiwari.458 -
Best 5 Lightweight PHP Frameworks for REST APIs Development
Are you ready to develop the Rest AP
by ankur.kumar -
PHP: Full-Stack Framework vs Micro Framework
A web framework can be described as a software fra
by ankit.bhatia -
How to get facebook profile picture by Facebook App
If you would like to get your profile picture in f
by vivek.rastogi -
Creating RESTful API in cakephp
This tutorial will help you to learn how to create
by pushpendra.rawat
Tags
How to Display Advance Custom Fields in Wordpress - 2 Different Methods
Custom fields are the addition fields in WordPress that are used to show the custom data that we want to show/have in our WordPress posts/custom/posts or pages.
While adding a new post in WP Website you will find draggable or drop-down boxes, ...
Pascal's Triangle using recursion in php
Hello readers, today we will discuss printing pascal's triangle using recursion. Pascal's triangle is a triangle where each number is the sum of the two numbers directly above it. We have one of the most interesting Number Patterns in Pas...
How to Print Floyd's Triangle in php ?
Hello readers, today I have taken example of Floyds triangle. Floyd's triangle is a right-angled triangle of array having natural numbers. The natural numbers are printed in such a manner , that it will look like right angle...
How can you get all the combinations of given string in php?
We can generate all possible combinations of given string. Here I made a function get_string_combinations($str), this function will accept string as a parameter and will give you all possible combinations of that string. In this function, I have ...
what is difference between array_merge and array_combine in php
Array_merge
Array_merge merges the elements of two or more array in one array such that the value of second array is appended to the value of first array. If two or more array elements have same key, then the later value will overrides t...
How to add Breadcrumbs Without a Plugin in WordPress
Breadcrumbs is very useful in navigation. It is defined as a navigation technique that offers link to the home page to the user navigated through to arrive at the current post/page.There are so many plugins that is used to add breadcrumbs in word...
Prevent from text selection on double click of mouse.
Sometime you may need to prevent from text selection on double click of mouse button. You can use use the following css3 code for the same:-
.monthReport label {-webkit-touch-callout: none;-webkit-user-select: none;-khtml-user-select: none;-mo...
Submitting a form via curl
Hers's is the tutorial to submit form via curl.
I am taking example of log in form for say xyz.com site.
$ch = curl_init();
if($ch){
$url = 'http://www.xyz.com/logmein.php';
$postdata = array('LoginButton' => "Logon",
...