summaryrefslogtreecommitdiff
path: root/getdata.php
diff options
context:
space:
mode:
authorroot2014-06-19 12:21:24 +0200
committerroot2014-06-19 12:21:24 +0200
commit1b54f67fb2bc065c9e9dbb66d1e00e407d30456d (patch)
tree8f873c8bb00e6cc520cd07c943eab5680f08d747 /getdata.php
parenta3e435a558392908a3c91f796042668fa10bb33f (diff)
downloadscilab_cloud_interface-1b54f67fb2bc065c9e9dbb66d1e00e407d30456d.tar.gz
scilab_cloud_interface-1b54f67fb2bc065c9e9dbb66d1e00e407d30456d.tar.bz2
scilab_cloud_interface-1b54f67fb2bc065c9e9dbb66d1e00e407d30456d.zip
started propoer github maintainence
Diffstat (limited to 'getdata.php')
-rwxr-xr-xgetdata.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/getdata.php b/getdata.php
index ba09bb3..5492f89 100755
--- a/getdata.php
+++ b/getdata.php
@@ -19,6 +19,7 @@
$counter++;
}
$data .= '</select>';
+ $data .= '<span id="book-download"> <a href="#">Download Book</a></span>';
echo $data;
exit;
}elseif(isset($_POST['bid'])) {
@@ -30,6 +31,7 @@
$data .= '<option value="' . $row->id . '">' . $row->number . ' &nbsp;-&nbsp; ' . $row->name . '</option>';
}
$data .= '</select>';
+ $data .= '<span id="chapter-download"> <a href="#">Download Chapter</a></span>';
echo json_encode($data);
exit;
}elseif(isset($_POST['cid'])) {
@@ -41,6 +43,7 @@
$data .= '<option value="' . $row->id . '">' . $row->number . ' &nbsp;-&nbsp; ' . $row->caption . '</option>';
}
$data .= '</select>';
+ $data .= '<span id="example-download"> <a href="#">Download Example</a></span>';
echo json_encode($data);
exit;
}