Tag Archives: code

Whathuh Twitter Command Line Tool

I was shown a Win32 CLI for Twitter, and I didn’t like how it was done, so I made one. Pretty simple to use. Vista: Extract the two files to your home directory XP: Extract the two files to your … Continue reading

Posted in Microblogging, development | Tagged , , , , , | Leave a comment

PHP if statement alternatives

Did you know there are actually 3 different ways to use the if…else…elseif control in PHP? They each have their uses, and hopefully I can help decode them a little bit for those who aren’t familiar with them. Here is … Continue reading

Posted in development, php | Tagged , , , , , , , , | Leave a comment

Simplified PHP $_POST data handling

When posting data from a form to a page, the $_POST variable gets set to an array similar to this: Array ([name] => “daniel”, [state] => “illinois”, [phone] => “630-618-9588″) Now, one way to process this is to know in … Continue reading

Posted in development, php | Tagged , , , , | 2 Comments