7 lines
No EOL
135 B
PHP
Executable file
7 lines
No EOL
135 B
PHP
Executable file
<?php
|
|
|
|
function link_($string, $url) {
|
|
return '<a href="'.$url.'" target="_blank" rel="noopener noreferrer">'.$string.'</a>';
|
|
}
|
|
|
|
?>
|