Posts by versluis

How to find and replace in MySQL with phpMyAdmin

Posted on Dec 5, 2014

Sometimes you need to replace a string in your database with another string, and it can be rather tedious to plough through a large table manually. Thankfully MySQL can execute raw queries such as find and...

Learn More

How to create a redirect in PHP

Posted on Dec 4, 2014

Say you had domain.com/folder, and you’d like it to automatically redirect to domain.com/otherfolder, do the following: <?php // redirecting elsewhere header("Location:...

Learn More