encodeURIComponent (PHP Motion)
Feb 17I was having some trouble with comments in phpmotion. Turns out the genius developers over there don’t understand that not all users of the internet forget how to punctuate. After burrowing deep into the code, I found where the key value pair was being created for the POST. At this point all I needed to do was convert the special characters in the string. 204. url += chiave + "=" +...
Organize Incoming Mail in Outlook 2007
Feb 16A simple way to organize incoming mail in Outlook is by setting up a rule. Recently I was receiving a lot of mail from a specific discussion group at work, and wanted to organize this mail specifically to one folder outside of my Inbox. The first step is to open up the rules window. Go to Tools > Rules and Alerts… Create a New Rule… The example above is a completed rule, in order...
Forms in IE vs FF (and the rest)
Feb 14If you’re trying to prevent the default action of a form to do some JavaScript validation, or for whatever reason, you may have to make some adjustments for Internet Explorer. The key here is capturing the event and telling it what you want, and not letting the browsers default actions take over. The button on your form should look something like this: <button id="submit"...