Welcome Guest, Not a member yet? Register   Sign In
undefined variable (newbie)
#3

[eluser]thatscriptguy[/eluser]
I'm having the exact same problem. Experienced PHP scripter here, but brand new to Code Igniter. I'm following the tutorial to the letter, but I'm getting undefined variable notices.

Controller blog.php

Code:
<?php
class Blog extends Controller
{
    function index()
    {
        $data['title'] = 'My Real Title';
        $data['heading'] = 'My Real Heading';
        $this->load->view('blogview');
    }
}
?>

View blogview.php
Code:
<html>
<head><title><?php echo $title; ?></title>
</head>
<body>
<h1>&lt;?php echo $heading; ?&gt;</h1>
&lt;/body&gt;
&lt;/html&gt;

If it matters, I'm running the latest PHP (5.2.5, if I recall correctly)

The only bad thing showing in the logs is the notice...

Kevin


Messages In This Thread
undefined variable (newbie) - by El Forum - 02-12-2008, 05:50 PM
undefined variable (newbie) - by El Forum - 02-12-2008, 07:59 PM
undefined variable (newbie) - by El Forum - 02-12-2008, 08:11 PM
undefined variable (newbie) - by El Forum - 02-12-2008, 08:35 PM
undefined variable (newbie) - by El Forum - 02-12-2008, 09:06 PM
undefined variable (newbie) - by El Forum - 02-12-2008, 09:23 PM
undefined variable (newbie) - by El Forum - 02-12-2008, 09:27 PM
undefined variable (newbie) - by El Forum - 02-12-2008, 09:31 PM
undefined variable (newbie) - by El Forum - 02-12-2008, 09:31 PM
undefined variable (newbie) - by El Forum - 02-12-2008, 09:37 PM
undefined variable (newbie) - by El Forum - 02-12-2008, 10:20 PM
undefined variable (newbie) - by El Forum - 02-13-2008, 03:42 AM
undefined variable (newbie) - by El Forum - 02-13-2008, 03:46 AM
undefined variable (newbie) - by El Forum - 02-13-2008, 05:41 AM
undefined variable (newbie) - by El Forum - 02-13-2008, 01:01 PM
undefined variable (newbie) - by El Forum - 02-13-2008, 01:10 PM
undefined variable (newbie) - by El Forum - 03-24-2009, 01:46 AM
undefined variable (newbie) - by El Forum - 03-24-2009, 02:09 AM
undefined variable (newbie) - by El Forum - 03-24-2009, 02:20 AM
undefined variable (newbie) - by El Forum - 03-24-2009, 02:32 AM
undefined variable (newbie) - by El Forum - 03-24-2009, 02:42 AM
undefined variable (newbie) - by El Forum - 07-06-2011, 06:20 AM



Theme © iAndrew 2016 - Forum software by © MyBB