5 lines
180 B
PHP
5 lines
180 B
PHP
<?php function generate_hash_link($type, $title="") {
|
|
$hash = Hash::make($type);
|
|
$showLink = url("mail-link?title=$title&type=$type&hash=$hash");
|
|
return $showLink;
|
|
} ?>
|