Skip to content

Instantly share code, notes, and snippets.

@SitesByYogi
Created June 21, 2023 14:18
Show Gist options
  • Save SitesByYogi/0f675b368b9ab9b1b377a19a300b7fbe to your computer and use it in GitHub Desktop.
Save SitesByYogi/0f675b368b9ab9b1b377a19a300b7fbe to your computer and use it in GitHub Desktop.
PHP Variables and Data Types
<?php
$name = "John Doe"; // string
$age = 25; // integer
$price = 9.99; // float
$isStudent = true; // boolean
$fruits = array("apple", "banana", "orange"); // array
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment