IIS, ASP로 작성된 코드입니다.
아래의 ASP 코드를 리눅스,아파치 환경의 PHP 코드로 변경하고 싶습니다.
델파이에서 아래의 ASP 코드를 PHP 코드로 변경하여 웹연동을 하려고 합니다.
일반 윈도우어플만 하다가 갑자기 웹을 하려니깐 난감하네요..
부탁드립니다.
<% option explicit
Response.buffer = true
%>
<!-- #include virtual="/newtype/include/adovbs.inc" -->
<!-- #include virtual="/newtype/include/dsn.asa" -->
<%
dim Rs, Rst, sql
sql = "select tindex from NameList"
Set Rs = Server.CreateObject("ADODB.RecordSet")
Set Rst = Server.CreateObject("ADODB.Stream")
Rs.Open sql, dsn, adOpenForwardOnly, adLockReadOnly, adCmdText
Rs.Save Response, adPersistXML
if not Rst is nothing then
if Rst.State = adStateOpen then Rst.Close
Set Rst = nothing
end if
if not Rs is nothing then
if Rs.State = adStateOpen then Rs.Close
set Rs = nothing
end if
%>
그리고 ASP코드 보니깐 디비연동해서 호출만 하면 끝인가요 ? 정확한 내용을 모르겟네요.
php라면
<?
$db = mysql_connect("localhost","아이디","패스워드") or exit("Connection Failed");
mysql_select_db("데이터베이스");
$sql = "select tindex from NameList";
$result = mysql_query($sql,$db);
while ($row = mysql_fetch_array($result)) {
원하시는 xml출력코드
}
?>
이정도면 되지 않을까요 ?