0
How could you make a PHP redirect using the header function pointing to a specific target type: _Blank, _self and others?
header('location: /minhapagina');
How to do the above section point to the target I want?
0
How could you make a PHP redirect using the header function pointing to a specific target type: _Blank, _self and others?
header('location: /minhapagina');
How to do the above section point to the target I want?
Browser other questions tagged php
You are not signed in. Login or sign up in order to post.
This is not possible on the server side, only on the client side.
– bfavaretto