-
Recent Posts
Recent Comments
Archives
Categories
- Data Structures and Algorithms (2)
- Linux (11)
- Misc (2)
- Programming (19)
- Tools (14)
- Web Development (12)
- Windows (1)
Meta
Log In
Tag Archives: mysql
WampServer vs XAMPP
This is not an Earth shattering post. Moreover, it’s not an objective one, that is, it is based on my experience and my experience only. WAMP is a bundle of Apache, MySql, and PHP (though often also Perl and/or Python) … Continue reading
Posted in Tools, Web Development, Windows
Tagged apache, mysql, perl, php, python, wamp, wampserver, windows, xampp
8 Comments
Exploring Database Tables with jQuery
I woke up this morning tired of phpMyAdmin, and decided to take a stand. phpMyAdmin is a web-based tool that most big hosting companies use for their shared hosting plans. It’s powerful in terms of the set of features it … Continue reading
Commas in a PHP For Loop
When generating a string that lists items (e.g. for a MySQL query) with a for-loop in PHP, you often need to add commas after every element except the last one. It may be trivial advice, but instead of having an … Continue reading
CRUD: Create, Read, Update, and Delete
CRUD are the four basic operations commonly performed on a relational database. In MySQL for example, the four operation are implemented by INSERT, SELECT, UPDATE, and DELETE, respectively. The reason for this post is that I’ve had to program these … Continue reading