airartist74 Posted May 5, 2019 Share Posted May 5, 2019 Hello, I am working on a cms site but I am having trouble with retrieving some info by id. I followed a tutorial on youtube and my code looks correct but my ID string is empty. Any help would be greatly appreciated. Class with functions class Article { public function fetch_all(){ global $pdo; $query= $pdo->prepare("SELECT * FROM article"); $query->execute(); return $query->fetchAll(); } public function fetch_data($article_id) { global $pdo; $query = $pdo->prepare("SELECT * FROM article WHERE article_id =?"); $query->bindValue(1, $article_id); $query->execute(); return $query->fetch(); } ************************************* Call to functions include_once('includes/connection.php'); include_once('includes/article.php'); $article = new Article; var_dump($_GET, $_POST); //var_dump($article); if (isset($_GET['id'])){ $id = $_GET['id']; $data = $article->fetch_data($id); print_r($data); When I var_dump the get and post I get array(0) { } array(0) { }. fetch all works great but fetch data does not and I am not sure where the post id is pulling from since there isn't a prior connection. Thank You, Devin Quote Link to comment https://forums.phpfreaks.com/topic/308671-_get-not-working/ Share on other sites More sharing options...
gw1500se Posted May 5, 2019 Share Posted May 5, 2019 (edited) $_GET and $_POST are a function of your HTML form and/or URL. You didn't post any of that. P.S. Please use the code (<>) icon and select the proper type for your PHP and/or HTML. Edited May 5, 2019 by gw1500se Quote Link to comment https://forums.phpfreaks.com/topic/308671-_get-not-working/#findComment-1566471 Share on other sites More sharing options...
ginerjm Posted May 6, 2019 Share Posted May 6, 2019 The var dump results are because you don't have anything in those arrays. Did you get to this script via a web page that contained a form of yours or a url that used any parms? If you didn't, then you don't have any input to retrieve from $_GET or $_POST Why did you expect anything there? Quote Link to comment https://forums.phpfreaks.com/topic/308671-_get-not-working/#findComment-1566473 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.