🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
21 lines
189 B
PHP
21 lines
189 B
PHP
<?php
|
|
|
|
function href($url)
|
|
{
|
|
print "
|
|
<script>
|
|
location.href = '$url';
|
|
</script>
|
|
";
|
|
}
|
|
|
|
function alert($msg)
|
|
{
|
|
print "
|
|
<script>
|
|
alert('$msg');
|
|
</script>
|
|
";
|
|
}
|
|
|
|
?>
|