What redirect php code to use?

Status
Not open for further replies.

Divvy

Active Member
806
2009
18
0
Hello guys,

Can someone help me?

I need to know what php code I need to add in my file to makes the same as this link:
Code:
http://adultwebsponsors.com/longbucks.php

If you click in that link, will redirect to another url...

I know that this is easy, but I have zero php knowledge :)

Thank you guys,
Tim
 
4 comments


PHP:
<?php
header('Location: http://www.example.com');

exit;
?>


like
PHP:
<?php
header('Location: http://www.tv-release.net/');


exit;
?>

 
Status
Not open for further replies.
Back
Top