Core lib of filesite.io, a small PHP Framework. https://fsc.filesite.io
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
800 B

3 years ago
<style>
3 years ago
body{padding:10px;max-width:720px;margin:0 auto}
3 years ago
code{background-color:#EEE}
pre{padding:10px;background-color:#DDD}
.footer{text-align:center}
</style>
3 years ago
<h1>Welcome to FSC</h1>
3 years ago
<p>FSC is the core lib of <a href="https://filesite.io" target="_blank">filesite.io</a>, a small PHP Framework.</p>
3 years ago
<hr>
3 years ago
<h2>Download FSC</h2>
<p>
Source code:
<a href="https://git.filesite.io/filesite/fsc" target="_blank">https://git.filesite.io/filesite/fsc</a>,
download it via git:
</p>
<pre>
git clone "https://git.filesite.io/filesite/fsc.git"
</pre>
<h2>Sample codes</h2>
3 years ago
<h3>App parameters</h3>
3 years ago
<code>&lt;?php print_r(FSC::$app); ?&gt;</code>
3 years ago
<pre>
<?php print_r(FSC::$app); ?>
</pre>
<h3>View parameters</h3>
3 years ago
<code>&lt;?php print_r($viewData); ?&gt;</code>
3 years ago
<pre>
<?php print_r($viewData); ?>
</pre>