Questions tagged [controllers]

Controller provides a centralized entry point for handling requests. Usually is referred as a part of Model-View-Controller design pattern.

903 questions
-3
votes
1 answer

how to use multiple controllers in codeigniter

i am currently working on a project in codeigniter. I want to separate my controllers for each function. Example, controller_for_login.php controller_for_redirecting_to_other_views.php controller_for_CRUD.php controller_for_others.php is there any…
kev_m
  • 325
  • 7
  • 30
-3
votes
2 answers

Calling controller AngularJS from a button in HTML

I need to call the controller deleteMember so to when the user clicks on a button, the member is deleted. //deleting a member Members.controller('deleteMember',['$scope','$http',function($scope, $http){ $scope.deleteMember = function(member){ …
-3
votes
2 answers

I'm getting an error I don't understand in PhpStorm using Symfony

I've taken a picture of the above error. I don't understand this error and I definitely don't understand how to fix it either. I am using PhpStorm with Symfony. I want to be able to connect to the database. I have set up my entities and my…
1 2 3
60
61