Skip to content

Instantly share code, notes, and snippets.

@masikhsanms
Last active January 6, 2019 05:22
Show Gist options
  • Save masikhsanms/c17e754ec986edfa46920f14d6bafe17 to your computer and use it in GitHub Desktop.
Save masikhsanms/c17e754ec986edfa46920f14d6bafe17 to your computer and use it in GitHub Desktop.
<?php
$dari_user = "Andi";
$dari_database = "andi";
if ($dari_user == $dari_database) {
echo "same";
}
else {
echo "not same";
}
// result: not same
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment