Skip to content
This repository was archived by the owner on Apr 6, 2021. It is now read-only.

Commit ffcb2ed

Browse files
author
Tim Robinson
committed
Add doc for setting up PHPMyAdmin
1 parent 30cd4cf commit ffcb2ed

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# PHPMyAdmin
2+
3+
PHPMyAdmin provides an easy to use web interface to manage your MySQL database/s
4+
5+
## PHPMyAdmin's most common features
6+
* Import data from CSV and SQL
7+
* Export data to various formats: CSV, SQL, XML, PDF (via the TCPDFfd\mya library), ISO/IEC 26300 - OpenDocument Text and Spreadsheet, Word, Excel, LaTeX and others
8+
* Administering multiple servers
9+
* Creating PDF graphics of the database layout
10+
* Creating complex queries using Query-by-Example (QBE)
11+
* Searching globally in a database or a subset of it
12+
* Transforming stored data into any format using a set of predefined functions, like displaying BLOB-data as image or download-link
13+
* Live charts to monitor MySQL server activity like connections, processes, CPU/Memory usage, etc.
14+
* [Many more](http://en.wikipedia.org/wiki/PHPMyAdmin)<br/>
15+
16+
## Using PHPMyAdmin with Cloud9
17+
This article explains our first iteration of PHPMyAdmin support in Cloud9. It makes it super easy to install a PHPMyAdmin instance right in your workspace. Each workspace runs it's own Database and copy of PHPMyAdmin.
18+
19+
```bash
20+
# Install PHPMyAdmin
21+
$ phpmyadmin-ctl install
22+
```
23+
24+
After the installation is complete you'll be given a link to access PHPMyAdmin. If you'd like further help using the software please consult the <a href="http://www.phpmyadmin.net/home_page/docs.php" target="_blank">official PHPMyAdmin docs</a>.

templates/default/toc.jade

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,9 @@
154154
ul
155155
li.nav-submenu-item
156156
a(href='setting_up_mysql.html') Using MySQL
157+
ul
158+
li.nav-submenu-item
159+
a(href='setting_up_phpmyadmin.html') Using PHPMyAdmin
157160
li.nav-submenu-item
158161
a(href='setting_up_mongodb.html') Using MongoDB
159162
li.nav-submenu-item

0 commit comments

Comments
 (0)