In programming, a function is a block of code which performs some specific task and returns back to the caller. It has a unique name.
How to create function in Python
occasionally subtle
I'd rather be in outer space šø
$LAYYYTER
noise dept.

Origami Around
Sweet Seals For You, Always
PUT YOUR BEARD IN MY MOUTH
Aqua Utopiaļ½ęµ·ć®åŗć§čØę¶ćē“”ć

Kiana Khansmith
Jules of Nature
Xuebing Du
Monterey Bay Aquarium

if i look back, i am lost
Today's Document
Three Goblin Art
AnasAbdin

#extradirty
DEAR READER
cherry valley forever
sheepfilms
seen from United States
seen from United Kingdom
seen from Malaysia
seen from Malaysia
seen from United States
seen from Malaysia
seen from Pakistan
seen from United States

seen from United States

seen from Italy
seen from United States
seen from United States
seen from United States
seen from Japan
seen from United States
seen from United States
seen from Ukraine

seen from United States
seen from Canada
seen from Malaysia
@webdevtutorial
In programming, a function is a block of code which performs some specific task and returns back to the caller. It has a unique name.
How to create function in Python
Declaring variables in Python
In this tutorial, weāre going to learn how to Declare variables in python. Variables are temporary placeholder for storing value which has a unique name. In python we donāt need to declare the type of variable, this is done internally according to the value assigned.
http://makitweb.com/declaring-variables-python/
jQuery Autocomplete search
In this tutorial we have gone a learn how to show suggestion based on key pressed in the Textbook. We are going to create a Textbook for search user by name according to entered value, we will show suggestion. When a click on a suggested name, then we hide the suggestion and write that selected name to Textbox and we fetch user information.
http://makitweb.com/jquery-autocomplete-search/
Auto populate dropdown using AJAX
In this tutorial weāll learn how to auto populate dropdown based on selection using jQuery, AJAX and PHP.
What we going to do is that when Department name is selected from dropdown then we fetch all users in that department and showing it in another dropdown.
http://makitweb.com/auto-populate-dropdown-using-ajax/
Login using AJAX Tutorial
In Previous tutorial, we have learned that how to implement Login script using PHP. In this tutorial weāll be creating an AJAX Login form using jQuery and PHP.
http://makitweb.com/login-using-ajax-tutorial/
Basic PHP MySQL Login
In this tutorial weāre going to make basic login script using PHP and MySQL.
http://makitweb.com/basic-php-mysql-login/
Pagination using PHP
In this tutorial weāre going to make pagination using PHP.
http://makitweb.com/pagination-using-php/
Integrate Google reCAPTCHA using PHP
In this tutorial weāre going to learn how to integrate Google reCAPTCHA to your website using PHP.
By reCAPTCHA we protect sites from spam.
http://makitweb.com/integrate-google-recaptcha-using-php/
AJAX file upload using jQuery and PHP
In this tutorial, we are going to learn how to use AJAX for uploading the file.
http://makitweb.com/ajax-file-upload-using-jquery-php/
Ajax Pagination with jQuery and PHP
http://makitweb.com/ajax-pagination-with-jquery-and-php/
Username Availability checker using AJAX
http://makitweb.com/username-availability-checker-using-ajax/
Tabs using HTML,CSS and jQuery
http://makitweb.com/creating-tabs-using-htmlcss-and-jquery/
Accordion using HTML, CSS and jQuery
Accordion is a expandable and collapsible content holder that is divided in multiple sections.
http://makitweb.com/html-css-and-jquery-accordion/
PHP variables
Variables ā Variables are ācontainersā for storing information, which have user-defined name.
Syntax ā $variablename
Example -Ā
<?php $text = "Hello World"; echo $text; ?>
http://makitweb.com/php-variables/
Comments in PHP
A comment in PHP code is a line that is not read/executed as part of the program.
Its only purpose is to be read by someone who is editing the code.
http://makitweb.com/comments-in-php/