Single quote vs Double quote in php with examples
Almost all PHP programmers will get confusion on this atleast one time in their development carrier, Single Quote: 1. Values […]
» Read morenext gen Developer
Almost all PHP programmers will get confusion on this atleast one time in their development carrier, Single Quote: 1. Values […]
» Read moreHow to use constants in PHP ? Constants in php should not be declared/defined with $. Constants in any programming […]
» Read moreSome of the important PHP date formats are given below with examples, 1. Printing time and day [12 hour format]: […]
» Read moreNowadays all the information’s are communicated as JSON or XML. We have already seen how to write the JSON file. […]
» Read moreMD5: MD5 can be used to store password or high secured data as a hash key. Sample PHP Program: [php] […]
» Read morePHP Program Sample: [php] <?php $place = ‘Arcot’; $pincode = ‘632503’; $place_pincode = array($place=>$pincode); $json_value = json_encode ($place_pincode); echo $json_value; […]
» Read morePHP Program 1: [php] $str1 = "Java"; $str2 = "JAVA"; if (strcasecmp($str1, $str2) == 0) { echo "Both are Equal"; […]
» Read moreJava Program: [java] package in.javadomain; public class Hello { public static void main(String[] args) { Hello h = new Hello(); […]
» Read morePHP Program: [php] <?php error_reporting(E_ALL ^ E_NOTICE); ?> <form method="post" action="compare.php"> <div id="input" style="text-align: center; margin-top: 45px;"> Enter the website […]
» Read morePhp Program 1: [compare.php] [php] <?php error_reporting(E_ALL ^ E_NOTICE); ?> <?php $test = $_POST[‘pname’]; if($test){ echo $test; }else{ } ?> […]
» Read more