Help with GET - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: General (https://forum.codeigniter.com/forumdisplay.php?fid=1) +--- Forum: Regional User Groups (https://forum.codeigniter.com/forumdisplay.php?fid=25) +--- Thread: Help with GET (/showthread.php?tid=73581) |
Help with GET - Germanikus - 05-12-2019 Hello, everybody, I have a problem with the GET. I want to transfer three values where two values are present or not (where_or). But somehow none of the values are transferred and I don't know why. IMG: https://screenshots.firefox.com/g6qcToRnhwx1gftS/127.0.0.1 Controller: PHP Code: public function index($slug) { Model PHP Code: public function edition_listess($slug) { index.php Code: <?php echo validation_errors(); ?> edition.php (test page) Code: <?php echo validation_errors(); ?> RE: Help with GET - DELE - 05-12-2019 show the contents of your routes file, there might be an error there RE: Help with GET - Wouter60 - 05-12-2019 Which "GET" do you mean? The this->db->get(), or php's super-global $_GET? Please, give us an example of the complete url to call the edition/edition method with 3 values. RE: Help with GET - InsiteFX - 05-13-2019 Where are you getting the $url from? You need to show more code and what type of get your using. If your trying to pull these off of the url then you need to use CodeIgniter segment methods. |