Answers for "php variables examples"

PHP
10

php variables

<?php
  $string = 'string';
  $number = 1;
?>
Posted by: Guest on October-02-2020
4

php variables

<?php
/* In PHP, a variable starts with the $ sign, 
followed by the name of the variable:
*/

$txt = "Hello world!";
$x = 5;
$y = 10.5;
?>
Posted by: Guest on April-30-2020
5

php variables

<?php
    //can also use print instead of echo and would return  but it is
    //slower so use echo mainly
    #variable rules
    /*
        - Prefix with a dollar sign $
        - Start with a letter or an underscore only
        - Only letters, numbers and underscores
        - Case sensative
    */

    #DATA TYPES
    /*
        Strings
        Integers 4
        floats 4.4
        Booleans True or Flase
        Arrays
        Objects
        Null
        Resources 
    */
    $output = '  Hello there Bob!!';
    $num1 = 4;
    $num2 =10;
    $sum = $num1 + $num2;
    $string1 = '  Hello';
    $string2 = 'Bobby!!';
    $greeting = $string1 .' '. $string2;
    $greeting2 = "$string1 $string2";

    $string3 = ' They\'re Here';

    #making a constant

    define('GREETING', ' Hello Everyone!!');

    echo $sum;
    echo $output;
    echo $greeting;
    echo $greeting2;
    echo $string3;
    echo GREETING;
?>
Posted by: Guest on May-13-2020
0

php variables examples

<?php
  //this is for beginners //
  $animal = "cow";
?>
Posted by: Guest on October-18-2021
0

variables in php

<?php
  # To declare variables in php, you should prefix the variable name with
  # a dollar sign and assign it the value. For example:
  $msg = 'Hello World';
  $number = 10;
  $decimal = 98.6;
  $result = true;

  # To print out variable names, you can directly enter the variable name
  # inside of a print or echo statement. For example:
  echo "Variables: $msg, $number, $decimal, $result"
?>
Posted by: Guest on September-28-2021

Browse Popular Code Answers by Language