Welcome Guest, Not a member yet? Register   Sign In
novice for variables questions
#1

[eluser]syntaxerror[/eluser]
hi,
can anyone please help me with these simple question, i think.
i have codes in php
Code:
$vtag1 = substr($file1[$x],178,1);
    $vtag2 = substr($file2[$x],178,1);
    $page1 = substr($file1[$x],0,4);
    $page2 = substr($file2[$x],0,4);
    $name1 = substr($file1[$x],7,78);
    $name2 = substr($file2[$x],7,78);
    $addr1 = substr($file1[$x], 1, 78);
    $addr2 = substr($file2[$x], 1, 78);
    $city1 = substr($file1[$x], 79, 30);
    $city2 = substr($file2[$x], 79, 30);
    $state1 = substr($file1[$x], 110, 2);
    $state2 = substr($file2[$x], 110, 2);
    $zc1 = substr($file1[$x], 112, 5);
    $zc2 = substr($file2[$x], 112, 5);
    $tf1 = substr($file1[$x], 123, 40);
    $tf2 = substr($file2[$x], 123, 40);
    $phone1  = substr($file1[$x], 164, 12);
    $phone2  = substr($file2[$x], 164, 12);
but code igniter doesnt accepts variables like this in controller.
so i have to make $data[....] all variables.
Code:
$data['vtag1'] = substr($data['file1'][$x],178,1);
                        $data['vtag2'] = substr($data['file2'][$x],178,1);
                        $data['name1'] = substr($data['file1'][$x],7,78);
                        $data['name2'] = substr($data['file2'][$x],7,78);
is there shortcut in making variables in controller of codeigniter?
and also how to use for loop in controller?

thanks


Messages In This Thread
novice for variables questions - by El Forum - 10-10-2008, 01:12 AM
novice for variables questions - by El Forum - 10-10-2008, 02:11 AM
novice for variables questions - by El Forum - 10-10-2008, 02:15 AM
novice for variables questions - by El Forum - 10-10-2008, 02:16 AM
novice for variables questions - by El Forum - 10-10-2008, 02:19 AM
novice for variables questions - by El Forum - 10-10-2008, 02:27 AM
novice for variables questions - by El Forum - 10-10-2008, 02:32 AM
novice for variables questions - by El Forum - 10-10-2008, 03:27 AM
novice for variables questions - by El Forum - 10-10-2008, 03:32 AM
novice for variables questions - by El Forum - 10-10-2008, 03:55 AM
novice for variables questions - by El Forum - 10-10-2008, 04:02 AM
novice for variables questions - by El Forum - 10-10-2008, 05:00 AM
novice for variables questions - by El Forum - 10-10-2008, 05:09 AM



Theme © iAndrew 2016 - Forum software by © MyBB