Files
sam-sales/lib/helper.php

21 lines
189 B
PHP
Raw Normal View History

<?php
function href($url)
{
print "
<script>
location.href = '$url';
</script>
";
}
function alert($msg)
{
print "
<script>
alert('$msg');
</script>
";
}
?>