Sponsored Content
Full Discussion: deboucha28
Top Forums UNIX for Dummies Questions & Answers deboucha28 Post 25174 by RTM on Thursday 25th of July 2002 04:26:29 PM
Old 07-25-2002
Search this site for forgot and root (and Solaris). It's been something that has been asked before.

(like in this link
 
OUTPUT_RESET_REWRITE_VARS(3)						 1					      OUTPUT_RESET_REWRITE_VARS(3)

output_reset_rewrite_vars - Reset URL rewriter values

SYNOPSIS
bool output_reset_rewrite_vars (void ) DESCRIPTION
This function resets the URL rewriter and removes all rewrite variables previously set by the output_add_rewrite_var(3) function or the session mechanism (if session.use_trans_sid was set on session_start(3)). RETURN VALUES
Returns TRUE on success or FALSE on failure. EXAMPLES
Example #1 output_reset_rewrite_vars(3) example <?php session_start(); output_add_rewrite_var('var', 'value'); echo '<a href="file.php">link</a>'; ob_flush(); output_reset_rewrite_vars(); echo '<a href="file.php">link</a>'; ?> The above example will output: <a href="file.php?PHPSESSID=xxx&var=value">link</a> <a href="file.php">link</a> SEE ALSO
output_add_rewrite_var(3), ob_flush(3), ob_list_handlers(3), session_start(3). PHP Documentation Group OUTPUT_RESET_REWRITE_VARS(3)
All times are GMT -4. The time now is 03:11 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy