Hey! How might I page redirect in PHP similar to how it might be done in JavaScript:
window.onload = function Redirect()
{
window.location = "http://somesite.com";
}
Thanks
window.onload = function Redirect()
{
window.location = "http://somesite.com";
}
Thanks
Comment