diff options
author | root | 2014-06-19 12:21:24 +0200 |
---|---|---|
committer | root | 2014-06-19 12:21:24 +0200 |
commit | 1b54f67fb2bc065c9e9dbb66d1e00e407d30456d (patch) | |
tree | 8f873c8bb00e6cc520cd07c943eab5680f08d747 /getdata.php | |
parent | a3e435a558392908a3c91f796042668fa10bb33f (diff) | |
download | scilab_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-x | getdata.php | 3 |
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 . ' - ' . $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 . ' - ' . $row->caption . '</option>'; } $data .= '</select>'; + $data .= '<span id="example-download"> <a href="#">Download Example</a></span>'; echo json_encode($data); exit; } |