mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-01-16 19:05:08 -05:00
28 lines
574 B
PHP
28 lines
574 B
PHP
<?php
|
|
$project_name = 'AmazCart';
|
|
function getStorageFile($file_name){
|
|
$file = 'storage/app/.'.$file_name;
|
|
if(file_exists($file)){
|
|
return file_get_contents($file);
|
|
}
|
|
return false;
|
|
}
|
|
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta name="author" content="spondonit">
|
|
<meta name="descripton" content="A project of spondonit">
|
|
<title>Version | <?php echo $project_name ?></title>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Your current version of <?php echo $project_name . ' is '. getStorageFile('version') ?></h1>
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|
|
|