Arithmetic Operations, PHP Control Structures, Logical Expressions,php tutorial:
(adsbygoogle = window.adsbygoogle || []).push({});
Arithmetic Operations example code :
<?php
$a=30;
$b=15;
$a =$a+$b; //assigning variable $a to new value 45
echo $a.'this a is after assigning new variable a'.'<br>';
$total1=$a-$b; //assigning variable $total1 to new value $a-$b and rest of them are same
$total3=$a*$b;
$total4=$a/$b;
$total5=$a%$b;
echo $total1.'<br>'; //showing the results
...
1:33 PM
No comments
what is PHP?
PHP is a server side scripting language. Now you may have thought that PHP was a
programming language. Well, technically speaking, it's not.
So how's a scripting language different from a programming language?
The distinction between them is largely artificial, and the lines can get a bit blurry.
But we can do a general comparison. A script only runs in response to an event.
It also usually runs a...
10:15 AM
No comments
Example code for Loops pointers in php :
(adsbygoogle = window.adsbygoogle || []).push({});
<html> <head> <title>Loops: pointers</title> </head> <body> <?php $ages = array(43, 84, 154, 146, 213, 142); ?> <?php echo "1: "...
10:11 AM
No comments
Example code of functions in php
(adsbygoogle = window.adsbygoogle || []).push({});
<html> <head> <title>Functions2</title> </head> <body> <?php
$bar = "outside"; function foo() { global $bar; $bar = "inside"; } foo(); ...
10:07 AM
No comments
Example of Functions in php:
(adsbygoogle = window.adsbygoogle || []).push({});
<html> <head> <title>Functions</title> </head> <body> <?php // a simple function example function say_hello() { echo "Hello World!<br />"; ...
10:04 AM
No comments
Example of foreach loop in php
(adsbygoogle = window.adsbygoogle || []).push({});
<html> <head> <title>Loops: foreach</title> </head> <body> <?php $ages = array(43, 83, 125, 126, 223, 242); ?> <?php // using each value foreach($ages...
10:02 AM
No comments
Example of for loop in php :
(adsbygoogle = window.adsbygoogle || []).push({});
<html> <head> <title>Loops: for</title> </head> <body> <?php for ($count=0; $count <= 10; $count++) { echo $count . ", "; } ...
9:33 AM
No comments
<html> <head> <title>Floating Point Numbers</title> </head> <body> <?php $var1 = 3.14 ?> <?php ...
9:30 AM
No comments
Example code for Loops continue in php
<html> <head> <title>Loops continue</title> </head> <body> <?php for ($count=0; $count <= 10; $count++) { if ($count == 5) { continue; ...
9:28 AM
No comments
Example of Constants in php
<html> <head> <title>Constants</title> </head> <body> <?php $max_width = 980; ...
9:22 AM
No comments
Code of loop break in php:
<html> <head> <title>Loops break</title> </head> <body> <?php for ($count=0; $count <= 10; $count++) { echo $count; if ($count == 10) { break; } ...
9:20 AM
No comments
<html> <head> <title>Array Functions</title> </head> <body> <?php $array1 = array(5,2,144,15,33,52); ?> Count: <?php echo count($array1); ?><br /> Max value: <?php echo max($array1); ?><br /> Min value: <?php echo min($array1); ?><br /> ...
8:26 AM
No comments
(adsbygoogle = window.adsbygoogle || []).push({});
Create a temperature converter in php :
Here is the code for temperature converter in php
(adsbygoogle = window.adsbygoogle || []).push({});
<?php
function fahrenheit_to_celsius($given_value)
{
$celsius=5/9*($given_value-32);
return $celsius ;
}
function celsius_to_fahrenheit($given_value)
...
8:15 AM
No comments
Create a password generator by yourself in php:
Here is the code for Create a password generator :
(adsbygoogle = window.adsbygoogle || []).push({});
<?php
function generate_password($length)
{
$alpha=array('q','p','Z','o','R','*','&','@');
$password='';
for($i=1;$i<=$length;$i++)
{
...
8:09 AM
No comments
Create a simple calculator with php OOP:
Create a file called calculator_view.php . Now paste the following code.
(adsbygoogle = window.adsbygoogle || []).push({});
<?phprequire_once './classes/calculator.php';$obj= new Calculator();?><html> <head> <title>Loop Example</title> </head> <body> <form action="calculator_view.php" method="post"> ...
Subscribe to:
Posts (Atom)