-
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: php
Best WAMP for Web Development (2013 Edition)
I just wanted to put out there one guy’s opinion on the best WAMP package in 2013. I’ve had the chance to use all of the following, and here’s my rating from best (1) to worst (5). I should say first thought … Continue reading
Posted in Programming, Tools, Web Development
Tagged easyphp, php, uniform server, wamp, wampserver, xampp, zend server
Leave a comment
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
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
PHP IDE: Avoiding Emacs
I love Emacs. I consider this a problem, because while it’s an exceptionally powerful and productive environment for a programmer, I feel like it’s a tool that has a good chance of being left in the dust of quickly developing … Continue reading
Posted in Programming, Web Development
Tagged css, eclipse, ftp, html, ide, javascript, netbeans, php, rapid php
3 Comments
Ode to Emacs
Source: XKCD’s tribute to emacs In a world of beautiful, powerful IDE‘s for programming in C++, Java, PHP, Perl, LaTeX, etc, I still use Emacs. For those that don’t know, Emacs is a editor which God used to program the Universe. … 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