From c644128fdd49a47d791240e0e38b54cd22412bc5 Mon Sep 17 00:00:00 2001 From: Derek Allard Date: Wed, 4 Jul 2007 23:54:32 +0000 Subject: fixed validation errors... about a zillion of em. --- user_guide/libraries/output.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'user_guide/libraries/output.html') diff --git a/user_guide/libraries/output.html b/user_guide/libraries/output.html index 40858751e..10d59026b 100644 --- a/user_guide/libraries/output.html +++ b/user_guide/libraries/output.html @@ -75,7 +75,7 @@ It is possible, however, for you to manually intervene with the output if you ne

$this->output->set_output();

-

Permits you to manually set the final output string. Usage example:

+

Permits you to manually set the final output string. Usage example:

$this->output->set_output($data); @@ -85,7 +85,7 @@ For example, if you build a page in one of your controller functions, don't set

$this->output->get_output();

-

Permits you to manually retrieve any output that has been sent for storage in the output class. Usage example:

+

Permits you to manually retrieve any output that has been sent for storage in the output class. Usage example:

$string = $this->output->get_output();

Note that data will only be retrievable from this function if it has been previously sent to the output class by one of the @@ -94,7 +94,7 @@ CodeIgniter functions like $this->load->view().

$this->output->set_header();

-

Permits you to manually set server headers, which the output class will send for you when outputting the final rendered display. Example:

+

Permits you to manually set server headers, which the output class will send for you when outputting the final rendered display. Example:

$this->output->set_header("HTTP/1.0 200 OK");
@@ -131,7 +131,7 @@ Previous Topic:  Language Class Top of Page   ·   User Guide Home   ·   Next Topic:  Pagination Class -

+

CodeIgniter  ·  Copyright © 2007  ·  Ellislab, Inc.

-- cgit v1.2.3-24-g4f1b