Upload New File

parent 9fd929da
<?php
function get_title($_title){
return('<title>' . $_title . '</title>');
}
function open_page($_title){
echo('<html><head>' . get_title($_title) . '</head></head><body>');
}
function close_page(){
echo('</body></html>');
}
function redirect($_location){
header('Location : ' . $_location);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment