我正在尝试制作一个函数,让我可以使用 PHP 在我的页面中轻松显示消息。
我的功能:
/*
* Function to easy write modal / help boxes
*/
function modal($title, $message)
{
echo '
<!-- HELP MODAL -->
<div style="display:none;">
<div id="help" class="modal-content inline">
<h3>'.$title.'</h3>
'.$message.'
</div>
</div>
<!-- END HELP MODAL -->
';
}
还有我的 PHP 代码:
<?php echo modal("Title Message","Message <br /> <a href='link'>link</a>"); ?>
这不起作用。我打开了error_reporting,但没有看到错误。
我究竟做错了什么?