我对PHP很陌生,并且在我碰到这个砖墙之前一直很好。任何帮助将不胜感激。
实际上,这是与我的合作伙伴之间的一个简单的错误传达问题......他改变了目录结构,而我不知道是什么导致了这个问题。这个问题可能被视为已结束。谢谢你的帮助。
我有一个类user(),我在其中创建了这个get_articles()公共函数:
public function get_articles($obj_user){
try
{
$loc_dbo = $obj_user->connect();
$query = "CALL VIEW_MEMBER_ARTICLES(:in_var1)";
$stmt = $loc_dbo->prepare($query);
$stmt->bindParam(':in_var1',$obj_user->id, PDO::PARAM_INT);
$result = $stmt->execute();
if($result)
{
$arrArticles = array();
$index=0; //INDEX OF ROW IN ARRAY
while ($row = $stmt->fetch (PDO::FETCH_ASSOC))
{
//ADDING DATA TO A TWO-DIMENSIONAL ARRAY
//NAMED COLUMNS
$arrArticles[$index] = array();
$arrArticles[$index]['mem_user_name']=$row['mem_user_name'];
$arrArticles[$index]['article_post_date']=$row['article_post_date'];
$arrArticles[$index]['lvl_short_desc']=$row['lvl_short_desc'];
$arrArticles[$index]['article_subject']=$row['article_subject'];
$arrArticles[$index]['article_body']=$row['article_body'];
$arrArticles[$index]['pic_URL']=$row['pic_URL'];
$index++; //INCREMENT ROW INDEX COUNTER
}
$stmt->closeCursor(); //releases the bdd connection for another query.
return $arrArticles; //RETURNS THE ARRAY CONTAINING ARTICLES
}
else
{
return "Query Failed!";
}
}
catch(PDOException $e) {
return $e->getMessage();
}
}
}
从我包含我的用户类文件的页面中,我正在调用此函数:
$arr_posts = $p_user->get_articles($p_user);
for ($row = 0; $row < count($arr_posts); $row++)
{
for ($col = 0; $col < 6; $col++)
{
echo "<tr class=\"".active."\">";
echo "<td>\"".$row."\"</td>";
echo "<td>".$arr_posts[$row]['article_post_date']."</td>";
echo "<td>".$arr_art[$row]['article_subject']."</td>";
echo "<td>"."2"."</td>";
echo "</tr>";
}
}
$ p_user在页面顶部声明为新用户()。我只是无法理解为什么我收到一个错误,说方法未定义。
答案 0 :(得分:0)
文件夹只是被一名员工错位。闭合。