Why even bother with Linux? Whenever working on a client to server architecture it is always good practice ( in my opinion) to test and implement virtual environments of the actual production of the software project being deployed. In this blog post, I will be … [Read more...] about How to setup a LAMP stack using ubuntu server
PHP
How to echo out Zend select to SQL statement?
echo $select->__toString(); die(); … [Read more...] about How to echo out Zend select to SQL statement?
How to echo MySQL statement in Zend Framework?
echo $select->__toString(); $this->_helper->viewRenderer->setNoRender(true); … [Read more...] about How to echo MySQL statement in Zend Framework?
Error Handling: Dealing with errors, How exactly is it done?
Before I get into what error handling is all about in an OOP (object oriented programming language), Let me first talk about what an actual error code is and how they show up on your code. Well your a perfect programmer you don’t need any “handling” of your … [Read more...] about Error Handling: Dealing with errors, How exactly is it done?
Whats a really good way to display arrays in PHP?
Good question, There is two good command in PHP which are <?php print_r($array2); ?> All this does it prints out what is in the array with formatting, but if you want a nicer cleaner way to display what really is being held in the array try adding the … [Read more...] about Whats a really good way to display arrays in PHP?
Getting to know phpMyAdmin with MySQL building a address Book.
Testing out my development environment with XAMPP, I created a HolaMundo.php file to try out my new MySQL database and some echo commands from PHP it seemed simple enough although the dollar signs are a little awkward to type. The file starts with a stage that just … [Read more...] about Getting to know phpMyAdmin with MySQL building a address Book.