Tag Archives: PHP
PHP in a Jiffy – A beginner’s quickstart tutorial guide
Getting Set Up for the PHP Quickstart Who Is This For? This tutorial is for people who haven’t ever really programmed before but know some basic HTML and want to see what PHP can offer. If you’re new to programming … Continue reading
Setting up a LAMP style PHP web server quickly
Dear friends, I have come to you today to get you up and running “super good” style with PHP so you can start playing with websites on your own computer, no internet required. Ok, well you still probably might want … Continue reading
Ubuntu 10.10 Server In A Box – One Click Quick Install
For The Impatient Just run this command, however, I would highly recommend you read this full blog post before you do so. bash < <( curl https://github.com/rocksolidwebdesign/Ubuntu-Server-In-A-Box/raw/master/download-install ) && cd Ubuntu-Server-In-A-Box/maverick_cloud && fab setup Remember from like 3rd grade when … Continue reading
Learn Programming With PHP
So I done gone and wrote a book. Oops. I was dissatisfied with the current state of the freely available tutorials for learning PHP. I constantly see people asking for help with PHP when they don’t actually understand programming – … Continue reading
The new Rails or Django for PHP? My Zend Framework + Doctrine 2 integration: AweCMS
So a while back I saw the autocrud in Django and I was really impressed. I’ve also been working with Rails as of late and though ORM has it’s problems I wanted a good PHP framework plus ActiveRecord implementation that … Continue reading
How To apt-get Yourself a Web Server
You might think of this as a companion tutorial guide to my Ubuntu Server In A Box – One Click Installer or maybe you want to think of that as the companion installer to this guide. Either way I hope … Continue reading
Setting up the Doctrine 2 CLI with Zend Framework
Doctrine isn’t much use right now without being able to use the command line, so in addition to setting up your Zend Framework application to use Doctrine 2 you’ll want to set up the doctrine command line utility to work … Continue reading
Converting the Zend Framework application.ini to a PHP array
It’s really easy These are the same foo.bar.baz = "bing" <?php $myCongif[’foo’][’bar’][’baz’] = "bing"; ?> So, if you called the above PHP file config.php, then to load it, just tweak your index.php a little bit, like this <?php require_once APPLICATION_PATH … Continue reading
Relational Autocrud, Heck Yeah!
Sweet, now I have relational autocrud, you can edit the children of an entity, like you can edit comments on a Blog Entry or some such, automagically. Good stuff.
Auto CRUD form in Zend Framework
Wow, I finally got some Auto CRUD system going again in Zend Framework. I did this back in the summer while ago and didn’t think much of it, but now this could be big, I like it. I’ve been really … Continue reading
