Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
index.php
#1
Ich hab versucht in der index.php diesen Code einzufügen:

Code:
<?php

$users = array();
//Daten der User aus der Datenbank holen
$query = $db->query("SELECT * FROM users");
while ($row = $db->fetch($query)) {
$row['username'] = entparse($row['username']);
$users[] = $row;
}


//ID und die User an tpl übergeben

$tpl->assign('userInfo', $users);

?>

Und bekomme die Fehlermeldung:

Code:
Fatal error: Call to a member function on a non-object in C:\ds-lan\htdocs\include.inc.php on line 16

Das müsste ja heißen, das ich die .tpl falsch anspreche.
Wie heißt die den richtig?
[Image: create.php?uid=511]
Reply


Messages In This Thread
index.php - by abbar-2 - 17.10.2008, 12:57
RE: index.php - by -superking- - 17.10.2008, 13:04
RE: index.php - by abbar-2 - 17.10.2008, 13:06
RE: index.php - by -superking- - 17.10.2008, 13:20
RE: index.php - by abbar-2 - 17.10.2008, 13:50
RE: index.php - by agrafix - 17.10.2008, 22:33
RE: index.php - by abbar-2 - 18.10.2008, 09:38
RE: index.php - by -superking- - 18.10.2008, 09:49
RE: index.php - by abbar-2 - 18.10.2008, 09:55
RE: index.php - by -superking- - 18.10.2008, 09:56
RE: index.php - by agrafix - 18.10.2008, 09:58
RE: index.php - by -superking- - 18.10.2008, 09:59
RE: index.php - by abbar-2 - 18.10.2008, 10:01
RE: index.php - by -superking- - 18.10.2008, 10:02
RE: index.php - by abbar-2 - 18.10.2008, 10:08



Users browsing this thread: 1 Guest(s)