바로빌 전자세금계산서 솔루션 연결

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
aweso
2026-01-14 09:15:03 +09:00
parent f00e869368
commit 2ab3534278
35 changed files with 3618 additions and 1 deletions

21
lib/helper.php Normal file
View File

@@ -0,0 +1,21 @@
<?php
function href($url)
{
print "
<script>
location.href = '$url';
</script>
";
}
function alert($msg)
{
print "
<script>
alert('$msg');
</script>
";
}
?>