WELCOME!

Services

WELCOME
welcome to my website by KARTHICKRAJA.thank u for visiting...வருகைக்கு நன்றி.|Krtamilanz இந்த BLOG யை நான் 2013 நவம்பர் 5 ல் துவங்கிய நோக்கமே நான் படித்த ,கேட்ட ,தெரிந்த விஷ​யங்கள் நீங்களும் அறியவேண்டும் என்ற நல்லெண்ண நோக்கமே தவிர வேறதும்மில்லை.இதில் வரும் சில பதிவுகள் இணையதளத்தில் இருந்தும், சில பதிவுகள் கேட்டவை ,படித்தவை , சில நானே தொகுத்தவை.௭ன்றும் அன்புடன் உங்கள் கார்த்திக்ராஜா...

Bookmark This Site



Latest News Study According to your Internal Marks, Pass Semester Exam!!

Important Services
Drop Down MenusCSS Drop Down MenuPure CSS Dropdown Menu

Ad

info Links

entireweb

Showing posts with label php tutorials. Show all posts
Showing posts with label php tutorials. Show all posts

Saturday 24 October 2015

Php tutorial 1-Arithmetic operations

PHP Tutorials-1-Arithmetic Operations...

For Addition :

<?php
$num1=20;
$num2=2;

echo $num1+$num2;
?>

Output : 22

For subtraction :

<?php
$num1=20;
$num2=2;

echo $num1-$num2;
?>

Output:18

For Multiplication :

<?php

$num1=20;
$num2=2;

echo $num1*$num2;
?>

Output : 40

For Division :

<?php
$num1=20;
$num2=2;

echo $num1/$num2;
?>

Output : 10

Search by Keywords :

Php tutorial for Arithmetic operations
Arithmetic operations in php
php tutorial for arithmetic operations

Related Posts Plugin for WordPress, Blogger...