묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
php DB에서 가저온 데이터를 변수에 넣기
2006.09.08 10:56
안녕하세요.asp는 써봤는데 php는 초짜라서 일케 질문드려요.
아래는 소스를 좀 추린거구요.
설명 부탁드리구 싶은건
$aOrderList[DTL][$dbQ->getValue(1)][co_name] = $dbQ->getValue(1);<-- 이 소스에 대한 설명이에요.
2차원배열루 넣는거 같은데..
$szSQL = "SELECT co_name,
FROM dba
WHERE P_NO ='" . $aArgs[P_NO] . "'
ORDER BY P_NO ";
$dbQ->execute( $szSQL );
while ( $dbQ->next_record() )
{
$aOrderList[DTL][$dbQ->getValue(1)][co_name] = $dbQ->getValue(1);
}
$dbQ->free_statement();
$dbQ->disconnect;
아래는 소스를 좀 추린거구요.
설명 부탁드리구 싶은건
$aOrderList[DTL][$dbQ->getValue(1)][co_name] = $dbQ->getValue(1);<-- 이 소스에 대한 설명이에요.
2차원배열루 넣는거 같은데..
$szSQL = "SELECT co_name,
FROM dba
WHERE P_NO ='" . $aArgs[P_NO] . "'
ORDER BY P_NO ";
$dbQ->execute( $szSQL );
while ( $dbQ->next_record() )
{
$aOrderList[DTL][$dbQ->getValue(1)][co_name] = $dbQ->getValue(1);
}
$dbQ->free_statement();
$dbQ->disconnect;
while($data = mysql_fetch_array($que)) {
print $data[co_name];
}
이런 방식은 어떠실런지요? :)