Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7040323
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T01:54:17+00:00 2026-05-28T01:54:17+00:00

I have the relevant code posted in a gist: https://gist.github.com/1561520 I was wondering if

  • 0

I have the relevant code posted in a gist:

https://gist.github.com/1561520

I was wondering if someone could tell me what the correct way to call the ReportsController->create() method from my form would be. The only idea I can come up with would be to have form have a random action, something like action="application/views/reports/new.php" and call my controllers create method from there. The problem is, that defeats the purpose of the __autoload function, unless I am mistaken.

Thanks for your help!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T01:54:17+00:00Added an answer on May 28, 2026 at 1:54 am

    I would give a simple router like PHP-router a try.

    <?php
    
    require 'Router.php';
    
    $r = new Router();
    
    // maps '/report/create' to controller ReportsController->create().
    $r->match('/report/create','ReportsController#create');
    
    if($r->hasRoute()) { ?>
    
        <h1>Route found!</h1>
        <p><b>Controller: </b><?php echo $r->getRoute()->controller; ?></p>
        <p><b>Action: </b><?php echo $r->getRoute()->action; ?></p>
        <p><b>Params: </b><?php var_dump($r->getRoute()->params); ?></p>
    
    <?php
    
    // Load controller
    $controller = new $r->getRoute()->controller;
    
    // Call controller action, and pass params
    call_user_func_array(array($controller, $r->getRoute()->action), $r->getRoute()->params);
    
    }
    else
    {
        die('<h1>No route found.</h1>');
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a transparent BufferedImage created with the following code(not relevant how it is
I have an ActionResult that returns XML for an embedded device. The relevant code
I have a Perl script, the relevant bits of which are posted below. #
I have a table with the only relevant column being completionDate, a number of
I have two links with classes (login-form and register-form) relevant to their target forms
I have two tables (well, two relevant for this question) : Bets (holds the
I have an XML document that I'm trying to style via CSS. A relevant
I have a strange problem with mod_rewrite, the rules that are relevant here are:
I have 3 models sites, user_favorites and users. Relevant relationships: class Site < ActiveRecord::Base
Not really a programming question, but relevant to many programmers... Let's say I have

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.