Files
sam-sales/lib/helper.php
aweso 2ab3534278 바로빌 전자세금계산서 솔루션 연결
🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-01-14 09:15:03 +09:00

21 lines
189 B
PHP

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