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>
|
||
|
|
";
|
||
|
|
}
|
||
|
|
|
||
|
|
?>
|