ساخت فایل html توسط game maker
يكشنبه, ۲۳ فروردين ۱۳۹۴، ۰۲:۲۹ ق.ظ
برای ساخت یک فایل HTML مثل index.html مراحل زیر رو دنبال کنید.
توی game maker برید و یک room و یک object بسازید .
توی کد create ابجکت چیزی شبیه اینو بنویسید:
کد :
txtfile = file_text_open_write("index.html");
text1="<html><body><form name=form1 id=form1 action=";
text1+="http://sitename.com/sabte_emtiaz/index.php ";
text1+=" method=post><input type=text id=esm name=esm value=ali>";
text1+="<input type=text id=emtiaz name=emtiaz value=123>";
text1+="<input type=submit name=submit value=submit>";
text1+="</form>";
text1+="</body>";
text1+="</html>";
file_text_write_string(txtfile,text1);
file_text_close(txtfile);
با F5 سورس رو اجرا کنید.
مشاهده می کنید که در مسیر جاری فایل به اسم index.html ساخته شده که شامل یه فرم دلخواه با مقادیر پیش فرض هست.
از این روش می خواستم برای ثبت امتیاز آنلاین استفاده کنم که به وقتش اگه ساختم سورسشو (هر چند به نظرم دارای باگ هایی هست) میذارم.
هر کی خوشش اومد تشکر رو بزنه بی زحمت
۹۴/۰۱/۲۳