HI. all i am new to cakephp

i have table name called: adb_campaign

my contorller is:
my controller Name: compaigns_controller.php

<?php
class CompaignsController extends AppController {

    //var $tablePrefix = 'adb_';//var $name = "Users";
    var $name = 'adb_'

    var $uses=array('Client','User','Campaign');
    //var $uses=array('User');

    var $helpers = array('Html', 'Form');
    function mycampaigns()
    {
        $campaigns = $this->Campaign->find('all');
        $this->set('campaign',$campaigns);
    }

}
?>

my modle Name: campaign.php

<?php
class Campaign extends AppModel {

   // var $tablePrefix = 'adb_';
    var $useTable ='adb_'

}
?>

in the view folder name: campaign

mycampaigns.ctp

<?php
                                                        $a = array();
                                                        $i=1;
 
foreach( $campaigns as $campaign ):
                                                        $a[$i] =
$campaign['Campaign']['jobno'];
                                                        $i++;
                                                        endforeach;
                                                        echo $form-
>select('campaign ', $a, 0,
                                                        array('style'
=> 'width: 50%'),false);
                                                        ?>


where i made the mistake please help me

regards:
Master

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected] For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en

Reply via email to