03-11-2017, 02:04 PM 
		
	
	
		So that would be 
Redirect::to($us_url_root.'users/admin.php');
The idea of formatting things like that is that you want the script to work regardless of where it's being called from, so by going relative to your root (that z_us_root.php file), you sort of have this anchor so the code always knows where it's at. I hope that makes sense.
	
	
	
	
Redirect::to($us_url_root.'users/admin.php');
The idea of formatting things like that is that you want the script to work regardless of where it's being called from, so by going relative to your root (that z_us_root.php file), you sort of have this anchor so the code always knows where it's at. I hope that makes sense.

