묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
php와 xml 사이 문제인데요.
2005.07.10 22:03
플래쉬와.. xml을 연동(?)해서..
달력을 만들려 하는데..
불편한 점이 좀 있어서요..
다름이 아니라.. xml 파일을 오프라인에서 수정해서
업로딩 시켜야만... 플래수에서 읽어들여 적용이 되는데..
php나 기타 프로그래밍언어로
온라인(?)에서 xml 파일 수정이 가능한가 해서입니다..
가능하다면.. 프로그래밍도 함께 ^^;;
xml 파일 올려 드리겠습니다.. 앗.. 업로딩 해야할 곳이 --a
그럼 xml 파일의 트리 형식을 아래에 적어 드릴께요..
이런 형식으로 xml 파일로 저장 가능하게 할.
php 좀. 짜줄 분 계실지.. ^^;
------------------------>
<?xml version="1.0" encoding="euc-kr" ?>
<calendar color="0x7A59AC">
<year value="2005">
<month value="7">
<day value="22">
<label>가짜생일ㅋㅋㅋ</label>
<description>연습연습연습연습.. 에이 연습이라구요~~~~~~~~ </description>
</day>
<day value="29">
<label>Due: Chap 4 assignments </label>
<description>Details: The chapter 4 reading log and study questions are due to turnitin.com by midnight tonight. </description>
</day>
</month>
<month value="12">
<day value="1">
<label>Final Exam Available</label>
<description>Details: The final exam is available at the MCC and GCC testing centers. You may only use the GCC testing center if you are a GCC student. You will need photo identification, a pencil and 2 green scantrons. </description>
</day>
<day value="2">
<label>Final Exam Available</label>
<description>Details: The final exam is available at the MCC and GCC testing centers. You may only use the GCC testing center if you are a GCC student. You will need photo identification, a pencil and 2 green scantrons. </description>
</day>
</month>
</year>
</calendar>
달력을 만들려 하는데..
불편한 점이 좀 있어서요..
다름이 아니라.. xml 파일을 오프라인에서 수정해서
업로딩 시켜야만... 플래수에서 읽어들여 적용이 되는데..
php나 기타 프로그래밍언어로
온라인(?)에서 xml 파일 수정이 가능한가 해서입니다..
가능하다면.. 프로그래밍도 함께 ^^;;
xml 파일 올려 드리겠습니다.. 앗.. 업로딩 해야할 곳이 --a
그럼 xml 파일의 트리 형식을 아래에 적어 드릴께요..
이런 형식으로 xml 파일로 저장 가능하게 할.
php 좀. 짜줄 분 계실지.. ^^;
------------------------>
<?xml version="1.0" encoding="euc-kr" ?>
<calendar color="0x7A59AC">
<year value="2005">
<month value="7">
<day value="22">
<label>가짜생일ㅋㅋㅋ</label>
<description>연습연습연습연습.. 에이 연습이라구요~~~~~~~~ </description>
</day>
<day value="29">
<label>Due: Chap 4 assignments </label>
<description>Details: The chapter 4 reading log and study questions are due to turnitin.com by midnight tonight. </description>
</day>
</month>
<month value="12">
<day value="1">
<label>Final Exam Available</label>
<description>Details: The final exam is available at the MCC and GCC testing centers. You may only use the GCC testing center if you are a GCC student. You will need photo identification, a pencil and 2 green scantrons. </description>
</day>
<day value="2">
<label>Final Exam Available</label>
<description>Details: The final exam is available at the MCC and GCC testing centers. You may only use the GCC testing center if you are a GCC student. You will need photo identification, a pencil and 2 green scantrons. </description>
</day>
</month>
</year>
</calendar>
<?
$filename = "cal.xml";
$fp = fopen($filename, "r");
$length = filesize($filename);
$file = fread($fp, $length);
fclose($fp);
?>
<html>
<head>
</head>
<body>
<form name=form action=modify.php method=post>
<textarea cols=50 rows=20 name=test><?=$file?></textarea>
<input type=submit>
</form>
</body>
</html>
조런 파일 하나 만드셔서 cal.xml 이란 파일 불르시고...
<?
$test = $_POST['test'];
$test = stripslashes($test);
$filename = "cal.xml";
$fp = fopen($filename, "w");
@fwrite($fp, $test);
@fclose($fp);
?>
요렇게 modify.php 하나 만드시면...수정은 하실수 있을겁니다..
함 해보시고 안되시면 리플부탁해요^^;