求各位大神指点!在线等待!

WBOY
Release: 2016-06-23 14:27:26
Original
980 people have browsed it

我现在是这种情况 想要弄成这样的 是在一个html的页面里面,要调用到一个php文件的方法下面是我php文件中的方法:
//专题讲座分类
$sql="select id,subjectname,grouptypeid from `#@__sksubject` where parentid=0 and status=1";
$dsql->SetQuery($sql);
$dsql->Execute();
print_r($dsql);
while($row = $dsql->GetArray())
{
if($subjectid==$row['id']){
$subjectname=$row['subjectname'];
}
$subarr[]=array(
'id'=> $row['id'],
'subjectname'=> $row['subjectname'],
);
}
我不知道应该在html页面中如何写php代码。我想应该就是foreach循环吧 ,大神们给小弟指点下这个应该怎么写?最好给我提供下代码,因为我现在都不知道该如何把php文件中的方法在html页面中调用。。。。泪奔!


回复讨论(解决方案)

你得到的 $subarr 数组里面都是些什么?总得贴出来看看吧?
不然怎么替你写代码?

额  我print_r($sunarr);之后是
DedeSql Object ( [linkID] => Resource id #36 [dbHost] => localhost [dbUser] => root [dbPwd] => 12345 [dbName] => dujiaoshou [dbPrefix] => djs_ [result] => Array ( [me] => ) [queryString] => select id,subjectname,grouptypeid from `djs_sksubject` where parentid=0 and status=1 [parameters] => [isClose] => [safeCheck] => 1 [showError] => [recordLog] => [isInit] => 1 [pconnect] => ) 
这是怎么回事啊?

你得到的 $subarr 数组里面都是些什么?总得贴出来看看吧?
不然怎么替你写代码?
额  我print_r($sunarr);之后是
DedeSql Object ( [linkID] => Resource id #36 [dbHost] => localhost [dbUser] => root [dbPwd] => 12345 [dbName] => dujiaoshou [dbPrefix] => djs_ [result] => Array ( [me] => ) [queryString] => select id,subjectname,grouptypeid from `djs_sksubject` where parentid=0 and status=1 [parameters] => [isClose] => [safeCheck] => 1 [showError] => [recordLog] => [isInit] => 1 [pconnect] => ) 
这是怎么回事啊? 

你得到的 $subarr 数组里面都是些什么?总得贴出来看看吧?
不然怎么替你写代码?
好吧 ,我错了。我不知道该怎么输出$subarr 。。。。。

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template