Htaccess    html   Php    javascript   Asp   css    maths  Past Questions  Practice Tests Online

output reset rewrite vars function syntax tag tutorial 2013 Donate at flattr Flattr this





Alert! Connect with 10,000 Chating Online. Join Now

Php output reset rewrite vars () function

Write your php code

 
<?php ?>

Php Result


Your code below



(PHP 4 >= 4.3.0, PHP 5)

output_reset_rewrite_vars --  Reset URL rewriter values

Syntax

bool output_reset_rewrite_vars ( void )

This function resets the URL rewriter and undo the changes made by output_add_rewrite_var() and/or by session_start() that are still in the buffer.

Example 1. output_reset_rewrite_vars() 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(), ob_flush(), ob_list_handlers() and session_start().

Php output reset rewrite vars Function syntax tag

output reset rewrite vars php code on this is provided for your study purpose, it will guide you to know how create and design a website using php. use it to practice and train your self online



Php output reset rewrite vars syntax tutorial

php tutorial guide and code design are for easy learning and programming. The code practice section provided at the top is for practising of this syntax. Use the code section up to practice your php programming online. Learning php is very easy, all you need is to use the examples on this site and practice them to perfect your skills.


Function index

Variables

Expressions

Operators

Control-Structures

Cookies

Array

Date & Time

Directory function

File

Image

Operators

Form data handling

Mathematics operators

Mail

Php Mysql

Network Functions

Strings

php tutorial guides,functions, classes, code examples and tags for creating simple dynamic site to mysql database driven sites
 
 
Htaccess    html   Php    javascript   Asp   css    maths  Past Questions  Practice Tests Online