Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 503 Bytes

0269.md

File metadata and controls

31 lines (24 loc) · 503 Bytes

Which of the following code snippets will you use to redirect your users from one page to another?

  • A)
header("Location: http://php.com");
  • B)
redirect("Location: http://php.com");
  • C)
header("http://php.com");
  • D)
redirect("http://php.com");
Answer

Answer: A