If you’d like to redirect users using PHP then you can use the simple code of: $location = ""; header (’Location: ‘.$location); If you’d like to make it permanent, and SEO friendly then add: $location = ""; header (’HTTP/1.1 301 [...]
If you’d like to redirect users using PHP then you can use the simple code of: $location = ""; header (’Location: ‘.$location); If you’d like to make it permanent, and SEO friendly then add: $location = ""; header (’HTTP/1.1 301 [...]
My wordpress feed started giving me an error of: “error on line 2 at column 6: XML declaration allowed only at the start of the document” This was due to a white space at the beginning of the feed. It [...]
I have script that monitors MS SQL backups on a Windows server and thought I would share it with everyone. Here it is in it’s entirety, and I’ll explain some of the details below.
- PHP – I was just passed this and it’s SWEET! I have to share.
I needed to make a script that logged the hour, minute, day and year of a user connecting to a website. I was able to accomplish this using PHP and wanted to share it with you.