Questions tagged [kohana-3]

Kohana 3 is a HMVC (Hierarchical Model-View-Controller) PHP framework that places security, scalability and rapid development at its forefront.

Kohana is an HMVC (Hierarchical Model-View-Controller) PHP5 framework that provides a set of components for building web applications.

Kohana 3 is the first version of Kohana that supports HMVC.


Useful links


Related tags

846 questions
-1
votes
1 answer

Kohana "has many" issue

I have a model named permission. Permission has many roles permission has many users permission has many denied users Below is from the permissions model: protected $_has_many = array( 'user' => array('through' => 'user_permission'), …
Aaron A
  • 535
  • 7
  • 20
-1
votes
1 answer

Kohana - Validate ORM

I'm using Kohana for some time now. I'm using "has_many", "has_one", "belongs_to" without a problem, my question is: If I have 2 tables like this: tbl_foo1 id | tbl_foo2_id | field1 ------------------------- 1 | 2 | bar 2 | 1 |…
-2
votes
1 answer

Video Tutorial for Kohana3?

Is there any Video Tutorial for the Kohana3 ? or some easy way to study Kohana3. some one to tell me RTFM , but I'm so stupid indeed . I 'm searching the video tutorial for a while but gain nothing. who can help me...
ShunnarMeng
  • 115
  • 1
  • 1
  • 8
-2
votes
1 answer

Cascade Update or Delete - kohana

I have two tables Groups and Tracking and they are connected. I wanna delete Groups records, and delete foreign key in Tracking, but i don't know how to delete or update into NULL value this foreign key. I don't wanna delete all records from…
R0ck99
  • 113
  • 1
  • 1
  • 7
-2
votes
1 answer

Kohana classes and cascading file system

I'm just new to Kohana and its cascading file system. From what I understand, using the cascading file system allows extending of core classes and making your module use the subclass in place of the original core class (kind of like monkey…
gerky
  • 6,267
  • 11
  • 55
  • 82
-4
votes
5 answers

Function in an if statement

I am trying to do an if statement if a function returns true and the else if it doesn't Basically i need to show a html class in the return 1. I have try that below but I got an error. syntax error, unexpected 'if' (T_IF) This is what I have tried …
Sarah James
  • 431
  • 5
  • 19
1 2 3
56
57