Wordpress. We love it. We use it. It’s multi-functionable, flexible, adaptable, customizable and can be as simple or as complicated as you can/want/need to make it. For the professional blogger the best choice for online publishing platforms in my opinion is Wordpress. I have however been an “online journal” loyalist to Livejournal since I […]
Read Full Post »
Posted in php on Mar 24th, 2008
Once you hit a certain level of programming with php you will be able to think in a different way. At first I would always think hmmmm, I wonder if I could do that or I wonder if that is possible. Now that I have been programming with php for a while now I don’t […]
Read Full Post »
Posted in php on Nov 9th, 2007
I try to be as organized as possible when it comes to writing my code. There is no other way to code in php other than an a class based approach! I have a bad habit of instantiating every class even if I might not be using it, just in case I want to use […]
Read Full Post »
Posted in Training and Tutorials on Sep 25th, 2007
If you have never heard of lynda.com then you are missing out. I highly recommend this site is you are looking to learn new software or programming languages. I definitely learn more from a couple days watching these videos then a full semester of college. Maybe it just fits my learning style better then a […]
Read Full Post »
Posted in php on Sep 18th, 2007
I just installed the Geshi wordpress plugin. I have used Geshi before to do some php tutorials but I have never used it with wordpress so let’s see how it works. I think this will be great for this site!
1
2
3
4
5
6
7
<?php
echo "Hello World!";
$array_test = explode(",","one,two,three");
foreach ($array_test as $value) {
echo "$value ";
}
?>
Looks to be working pretty good. […]
Read Full Post »
Posted in php on Sep 11th, 2007
I have decided that I am no longer going to be coding using only php4 functions. The time is past due where it is okay for web hosting companies to use outdated software. If they don’t offer php5 then use a hosting company that will. I use dream host and they give you the option […]
Read Full Post »
Posted in php on Sep 9th, 2007
Lately I have been looking at some ways to optimize my php development. I have been looking at templating engines, frameworks and php objects. I have noticed that for each site or project I end coding a lot of the same function or copying functions from previous projects to build a similar class that does […]
Read Full Post »
Posted in php on Aug 31st, 2007
fprintf
(PHP 5)
fprintf — Write a formatted string to a stream
Description
int fprintf ( resource $handle, string $format [, mixed $args [, mixed $…]] )
Write a string produced according to format to the stream resource specified by handle.
Parameters
handle
format
See sprintf() for a description of […]
Read Full Post »
Posted in php on Aug 21st, 2007
fprintf
(PHP 5)
fprintf — Write a formatted string to a stream
Description
int fprintf ( resource $handle, string $format [, mixed $args [, mixed $…]] )
Write a string produced according to format to the stream resource specified by handle.
Parameters
handle
format
See sprintf() for a description of […]
Read Full Post »
Posted in php on Aug 21st, 2007
explode
(PHP 4, PHP 5)
explode — Split a string by string
Description
array explode ( string $delimiter, string $string [, int $limit] )
Returns an array of strings, each of which is a substring of string formed by splitting it on boundaries formed by the string delimiter.
Parameters
delimiter
[…]
Read Full Post »