txt문서 수정시 문제점..
딥자두
option explicit
private declare function shellexecute lib shell32.dll alias shellexecutea (byval hwnd as long, byval lpoperation as string, byval lpfile as string, byval lpparameters as string, byval lpdirectory as string, byval nshowcmd as long) as long
private sub command1_click()
dim winhttp as object
set winhttp = createobject(winhttp.winhttprequest.5.1)
winhttp.open get, http://loveyevol.hubweb.net/note.php?aa= & protecturl(text2.text)
winhttp.send
shellexecute 0, open, iexplore.exe, http://loveyevol.hubweb.net/note.txt, vbnullstring, 1
end sub
function protecturl(byval url as string)
dim i as long
dim ansi() as byte
dim ascii as integer
dim enctext as string
ansi = strconv(url, vbfromunicode)
enctext =
for i = 0 to ubound(ansi)
ascii = ansi(i)
select case ascii
case 48 to 57, 65 to 90, 97 to 122
enctext = enctext & chr(ascii)
case 32
enctext = enctext & +
case else
if ascii 16 then
enctext = enctext & %0 & hex(ascii)
else
enctext = enctext & % & hex(ascii)
end if
end select
next i
protecturl = enctext
end function
현재 이런식으로 이용해서 공지사항을 프로그램 내에서 수정하고
보이게끔 해놧어요;;
php소스는
수다님 소스를 활용한거예요.
?
$aa =$_get[aa];
$fo = fopen(note.txt, w+); //note.txt를 쓰기위해 열음
fwrite($fo, $aa);
fclose($fo)
?
자 여기서 질문이있어요.
일정 문자 혹은 일정 길이 이상일경우 안올라가거나
혹은 짤리거나
혹은 오류발생하네요.
어찌 해결해야할까요?
용량이증가해서 전송않되는건가요?
혹은 포함 문자열중 문제가 있는게있는건가요 ㅠ_ㅠ
번호 | 제 목 | 글쓴이 | 날짜 |
---|---|---|---|
2676006 | 질문하나더~ | 찬바리 | 2024-11-23 |
2675930 | 작업관리자 차단 | 별빛 | 2024-11-22 |
2675901 | 숫자를 제외한 문자를 어떻게 나타내야될까요? | 진나 | 2024-11-22 |
2675871 | 거의마지막질문인데요 | 아메 | 2024-11-22 |
2675846 | 제가 완성햇는데요 ㅎ; | 거늘 | 2024-11-21 |
2675824 | 타이머. 프로그래스바 코드 질문입니다. (10) | 빛글 | 2024-11-21 |
2675798 | 이걸 머라고해야 할지모르지만 질문합니다 (2) | 리라 | 2024-11-21 |
2675772 | 구구단 함수 질문이요~! (1) | 테이 | 2024-11-21 |
2675746 | exe저장시 런타임53 에러 | 아픔이보여 | 2024-11-20 |
2675718 | ocx 설치법 | 달달한캔디 | 2024-11-20 |
2675630 | ""안에 큰따음표 넣기. | 터전 | 2024-11-19 |
2675519 | 컴파일 오류 ?? | 슬아라 | 2024-11-18 |
2675492 | 비베 수다 사이트채팅 접속방법 | 마법 | 2024-11-18 |
2675463 | ㅠㅠ;; | 지은 | 2024-11-18 |
2675434 | 타이머로 라벨바꾸는거 (2) | 대나무 | 2024-11-18 |
2675386 | 선형보간법 문의 | 나길 | 2024-11-17 |
2675328 | 프로세스 강제종료하는방법좀... (1) | 슬아라 | 2024-11-17 |
2675226 | 폼 관련 질문&버튼 관련질문 (7) | 한울 | 2024-11-16 |
2675194 | 파일 삭제 소스 (4) | AngelsTears | 2024-11-15 |
2675147 | 예기치 않은 오류 (2) | 촉촉한 초코칩 | 2024-11-15 |