Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

codeigniter redirect methods

<?php

// Go back to the previous page
return redirect()->back();

// Go to specific URI
return redirect()->to('/admin');

// Go to a named route
return redirect()->route('named_route');

// Keep the old input values upon redirect so they can be used by the `old()` function
return redirect()->back()->withInput();

// Set a flash message
return redirect()->back()->with('foo', 'message');

// Copies all cookies from global response instance
return redirect()->back()->withCookies();

// Copies all headers from the global response instance
return redirect()->back()->withHeaders();
Source by codeigniter.com #
 
PREVIOUS NEXT
Tagged: #codeigniter #redirect #methods
ADD COMMENT
Topic
Name
7+4 =