10 lines
137 B
PHP
10 lines
137 B
PHP
|
<?php
|
||
|
|
||
|
include 'securimage.php';
|
||
|
|
||
|
$img = new securimage();
|
||
|
|
||
|
$img->show(); // alternate use: $img->show('/path/to/background.jpg');
|
||
|
|
||
|
?>
|