下記がうまく動作しません。
変数[test]がうまく送信されてないみたいなのですが原因が分かりません。
【HSP側】
#include "hspsock.as" sdim get,1000 /* 送信したい変数 */ test = "123456789" sockopen 0, "localhost", 80 sockput "GET /index.php HTTP/1.0 \n\n", 0 sockput "Host: localhost\r\n" sockput "Content-Length: "+strlen(test)+"\r\n" sockput "test="+test, 0 ;testを記述 sockget get,1000,0 sockclose 0 dialog get
【PHP側※localhost/index.php】
<?php header('Content - type: text/html; charset=UTF-8'); ?> <?php echo "変数testの中身は"; $test = $_GET['test']; echo $test; ?>
HSPだけの質問ではないので申し訳ないですが、是非お願い致します。