Skip to content

Instantly share code, notes, and snippets.

@ruliarmando
Created May 15, 2013 09:53
Show Gist options
  • Save ruliarmando/5582868 to your computer and use it in GitHub Desktop.
Save ruliarmando/5582868 to your computer and use it in GitHub Desktop.
<?php
for ($i=1;$i<=4;$i++){
echo "$i"."<BR>";
$_i[] = $i;
}
echo "-------------------------------------------------------------<br/>";
for ($a=4;$a<=6;$a++){
echo "$a"."<BR>";
$_a[] = $a;
}
echo "-------------------------------------------------------------<br/>";
if(array_intersect($_i, $_a)){
echo "Ada angka yang sama";
}else{
echo "Tidak ada angka yang sama";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment