Welcome Guest, Not a member yet? Register   Sign In
Typography
#1

[eluser]GamingFusion[/eluser]
I am try to use the typography function in Codeigniter btus it not working heres what i get for output
Quote:Success!
The Show has Been added!
Show Title: Show Title
Show Times:

when it should be
Quote:Success!
The Show has Been added!
Show Title: Show Title
Show Times: Mon - Fri: 7:30pm - 9:00pm
Cast: The Cast Members
Director: The Director

heres my code

Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
&lt;html &gt;
&lt;head&gt;
&lt;meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /&gt;
&lt;title&gt;&lt;?=$title?&gt;&lt;/title&gt;
&lt;/head&gt;

&lt;body&gt;
&lt;?php
    echo '<h1>Success!</h1>
    <h3>The Show has Been added!</h3>';
    echo '<b>Show Title: </b>', $this->input->post('title'), '<br />';
    echo '<b>Show Times: </b>', $this->typography($this->input->post('times')), '<br />';
    echo '<b>Cast: </b>', $this->typography($this->input->post('cast')), '<br />';
    echo '<b>Director: </b>', $this->input->post('director'), '<br />';
?&gt;
&lt;/body&gt;
&lt;/html&gt;

what did i code wrong?


Messages In This Thread
Typography - by El Forum - 10-23-2009, 03:35 PM
Typography - by El Forum - 10-23-2009, 05:08 PM
Typography - by El Forum - 10-23-2009, 05:09 PM



Theme © iAndrew 2016 - Forum software by © MyBB