Freeow! 1.0.2 Update

I made a few small changes to Freeow! You can now use the prepend option to specify if the next message should be prepended or appended to the message container. The default is true to keep it consistent with the previous versions’ functionality. Freeow! Main Page Freeow! on GitHub

Browser Cacheable PHP Scripts

Let’s say you have a script that outputs an image and you want the browser to cache it, just as it does static images. You can accomplish this by supplying some headers with the image, and then checking for certain headers when the server receives subsequent requests for the same image. You can do this [...]

Proxy Links

I came across the need to have one link act as a trigger for another link recently. In other words, clicking the “proxy” link really just causes the target link’s click handler to fire. This isn’t something that will be useful often, but may come in handy in specific circumstances. In my case, I was [...]