How many ways I can redirect a PHP page?
Answer Posted / sudheer
3 ways to submit our form
1.form attribete(action)
ex:<form name="frm" method="POST/GET" action="sample.php">
2.through header functions
ex:header("sample.php");
3.through javascript
ex:echo "<!--<script
type='text/javascript'>window.location='sample.php'</script>-->";
| Is This Answer Correct ? | 9 Yes | 1 No |
Post New Answer View All Answers
What is die in php?
Why do we use htaccess
What is session expiry?
How do you define a constant?
Explain the advantages of using PHP?
What is csrf mvc?
Can you define an argument as a reference type?
Is it easy to learn wordpress?
What are php libraries?
How can we enable error reporting in php?
Do you know what is the function func_num_args() used for?
What is php string function?
What is php ci?
What are the difference between echo and print?
How to retrieve values out of an array?