<a class='btn btn-danger' href='delete.php?sesi=user&id=".$data['username']."'>Hapus</a>
can someoen explain the function of dot(.)
<a class='btn btn-danger' href='delete.php?sesi=user&id=".$data['username']."'>Hapus</a>
can someoen explain the function of dot(.)
It's not a function. It's concatenation operator to connect between strings
I took this example from here
<?php
$a = "Hello ";
$b = $a . "World!"; // now $b contains "Hello World!"
$a = "Hello ";
$a .= "World!"; // now $a contains "Hello World!"
?>