aboutsummaryrefslogtreecommitdiff
path: root/public
diff options
context:
space:
mode:
Diffstat (limited to 'public')
-rw-r--r--public/css/soft.css13
-rw-r--r--public/test.php30
-rw-r--r--public/test2.php2
-rw-r--r--public/test3.php8
4 files changed, 35 insertions, 18 deletions
diff --git a/public/css/soft.css b/public/css/soft.css
new file mode 100644
index 0000000..108f44e
--- /dev/null
+++ b/public/css/soft.css
@@ -0,0 +1,13 @@
+div#options {
+ display: inline-block;
+ float: left;
+}
+
+div#main {
+ display: inline-block;
+}
+
+.menu {
+ position: fixed;
+ right: 0;
+} \ No newline at end of file
diff --git a/public/test.php b/public/test.php
index 0544502..7af0a01 100644
--- a/public/test.php
+++ b/public/test.php
@@ -1,19 +1,15 @@
<?php
-
-$data = ['id' => 'cool', 'redirect' => 'edit'];
-
-require('../w/class/route.php');
-
-$route = new Route($data);
-
-var_dump($route);
-
-var_dump($route->toarray());
-var_dump($route->tostring());
-
-$array = [];
-
-var_dump(implode(' ', $array));
-
-
+function test()
+{
+ static $count = 0;
+
+ $count++;
+ echo $count;
+ if ($count < 10) {
+ test();
+ }
+ $count--;
+}
+
+test();
?> \ No newline at end of file
diff --git a/public/test2.php b/public/test2.php
index a0cbafa..3e5fb1b 100644
--- a/public/test2.php
+++ b/public/test2.php
@@ -13,7 +13,7 @@ session_start();
<?php
-require('../w/class/class.w.quickcss.php');
+require('../w/class/quickcss.php');
$quick = new Quickcss($_POST);
diff --git a/public/test3.php b/public/test3.php
new file mode 100644
index 0000000..dcdb979
--- /dev/null
+++ b/public/test3.php
@@ -0,0 +1,8 @@
+<?php
+
+
+
+
+
+
+?> \ No newline at end of file