Cytat
Notice: Use of undefined constant id - assumed 'id' in C:\Program Files\xampp\htdocs\CMS\rescouces\articles.php on line 11
Notice: Use of undefined constant title - assumed 'title' in C:\Program Files\xampp\htdocs\CMS\rescouces\articles.php on line 12
[...] (ten sam blad do reszty zmiennych)
Notice: Undefined variable: id in C:\Program Files\xampp\htdocs\CMS\rescouces\artykul.php on line 4
Notice: Use of undefined constant title - assumed 'title' in C:\Program Files\xampp\htdocs\CMS\rescouces\articles.php on line 12
[...] (ten sam blad do reszty zmiennych)
Notice: Undefined variable: id in C:\Program Files\xampp\htdocs\CMS\rescouces\artykul.php on line 4
Poniżej jest funkcja wykonująca odbieranie danych z bazy danych
<?php function ShowArticle($id){ //Funkcja wyświetlająca artykuły $Query = "SELECT * FROM ARTICLES WHERE ID = '".$id."'"; { $id = $row[id]; $title = $row[title]; $authorid = $row[authorid]; $text = $row[text]; $shorttext = $row[shorttext]; $image = $row[image]; } }; ?>
A tutaj jej wykonanie
<?php include ('articles.php'); ShowArticle("2"); ?>