CodeIgniter Forums
I am a newbee here. - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: I am a newbee here. (/showthread.php?tid=12665)



I am a newbee here. - El Forum - 10-27-2008

[eluser]Praveen A P[/eluser]
I am following the
Quote:CREATE BLOG IN 20 Mins video
and trying to create a simple link to register.

The link never showed. Please help.

THE CONTROLLER CODE
Code:
<?php

class Ts_start extends Controller {

    function Ts_start(){
        parent::Controller();
        $this->load->helper('url');
    }
    
    function index(){
        $this->load->view('ts_start_view');
    }

    function register(){
        echo 'halwa...';
    }
}

THE VIEW CODE
Code:
<html>
<head>
<title>Stories</title>
</head>
<body>
<p>THIS IS THE SITE</p>
<p>&lt;?php anchor('ts_start/register', 'Register');?&gt;</p>
&lt;/body&gt;
&lt;/html&gt;



The text shows however the link does not.

Please help


I am a newbee here. - El Forum - 10-27-2008

[eluser]sl3dg3hamm3r[/eluser]
you forgot echo:

Code:
&lt;?php echo anchor('ts_start/register', 'Register');?&gt;