ทำไม wordpress ของผม โพส code ไม่ได้ครับเพิ่งหัดเล่นครับ

เริ่มโดย superspeedhost, 21 มกราคม 2014, 15:30:17

หัวข้อก่อนหน้า - หัวข้อถัดไป

0 สมาชิก และ 1 ผู้มาเยือน กำลังดูหัวข้อนี้

superspeedhost


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
  <title> New Document </title>
  <meta name="Generator" content="EditPlus">
  <meta name="Author" content="">
  <meta name="Keywords" content="">
  <meta name="Description" content="">
</head>

<body>
  testttttttttttttttttt
</body>
</html>



ผมต้องการให้มันแสดงแบบนี้น่ะครับ
แต่มันไม่แสดงผลเลยครับ

รบกวนช่วยชี้แนะด้วยครับ
ขอบคุณครับ
นี่ครับลิ้งค์
h00p://www.tikkieweb.com/?p=55
--

G1

[direct=https://goo.gl/9jmoQX]RDP Windows สำหรับอัพโหลดไฟล์ เร็วมากๆ เริ่มที่ต้นที่ $3.99 / เดือน[/direct]
[direct=https://bit.ly/3js5C4w]ค่าธรรมเนียมลดลง 10% เมื่อเทรด Cryptocurrency bitcoin กับ Binance[/direct]

VadiForte

ตอนที่กรอกอ่ะครับ ลองดูมุมขวาบนของช่องกรอก เปลี่ยนเป็นแบบ Visual ครับ เพราะเท่าที่ดู ของท่านน่าจะกรอกในโหมด HTML หรือเปล่าครับ
[direct=http://mux.in.th]เรื่องเล่าไร้สาระของผมเอง[/direct]

superspeedhost

ไม่ใช่ครับ
หมายถึงว่า ผมจะเอาโค้ดไปโชว์เพื่อน ให้เพื่อนดูน่ะครับ
โค้ดแบบเต็มๆ โดยที่ดพสไปแล้ว โค้ดจะไม่มีการเปลี่ยนแปลงๆใดๆทั้งสิ้น

http://www.tikkieweb.com/?p=55
แบบนี้อ่ะครับ  แต่ว่าแบบนี้ผมใช้  <blockquote> </blockquote>
แต่มันไม่ใช่ตัวโพสโค้ดตรงๆน่ะครับ

ที่เขาโพสๆกัน เชาใช้ปลั๊กอินตัวไหนหรือเปล่าครับ
ขอบคุณครับ
--

superspeedhost

อยากโพสแล้วให้มันแสดงแแบบนี้น่ะครับ


# include <conio.h>
# include <stdio.h>
void main()
{
 int row=1,i;
 char id[10],name[20],ans;
 float mid, final, mix, grade;

 clrscr();

for (i=1; i<80; i++)
{gotoxy(i,1); printf("-"); }

gotoxy(15,2); printf ("INPUT DATA | Plese Enter : ID : NAME : MID : FINAL");

for (i=1; i<80; i++)
{gotoxy(i,3); printf("-"); }





gotoxy(30,5); printf ("ID      =         ");
gotoxy(30,6); printf ("NAME    =              ");
gotoxy(30,7); printf ("MID     =       ");
gotoxy(30,8); printf ("FINAL   =       ");

for (i=1; i<80; i++)
{gotoxy(i,10); printf("-"); }

printf ("  NO     ID         NAME             MID         FINAL         MIX        GRADE");

for (i=1; i<80; i++)
{gotoxy(i,12); printf("-");}

// for (row=1; row<max; row++)


do
{

gotoxy(41,5); scanf ("%s",id);
gotoxy(41,6); scanf ("%s",name);
gotoxy(41,7); scanf ("%f",&mid);
gotoxy(41,8); scanf ("%f",&final);
gotoxy(1,12+row);   printf ("%2d",row);
gotoxy(9,12+row);   printf ("%s",id);
gotoxy(20,12+row);  printf ("%s",name);
gotoxy(32,12+row);  printf ("%10.2f",mid);
gotoxy(44,12+row);  printf ("%10.2f",final);

mix=mid+final;
if(mix >= 80)
{gotoxy(63,12+row);printf("%.2f       A \n", mix);}
else if(mix >= 75)
{gotoxy(63,12+row);printf("%.2f       B+ \n", mix);}
else if(mix >= 70)
{gotoxy(63,12+row);printf("%.2f       B \n", mix);}
else if(mix >= 65)
{gotoxy(63,12+row);printf("%.2f       C+ \n", mix);}
else if(mix >= 60)
{gotoxy(63,12+row);printf("%.2f       C \n", mix);}
else if(mix >= 55)
{gotoxy(63,12+row);printf("%.2f       D+ \n", mix);}
else if(mix >= 50)
{gotoxy(63,12+row);printf("%.2f       D \n", mix);}
else
{gotoxy(63,12+row);printf("%.2f       F \n", mix);}


row++;
gotoxy(30,9); printf("Continue ? (y/n): "); ans=getche();
if (ans=='y')
{
gotoxy(30,9); printf ("                         ");
gotoxy(41,5); printf ("                         ");
gotoxy(41,6); printf ("                         ");
gotoxy(41,7); printf ("                         ");
gotoxy(41,8); printf ("                         ");
}

 } while (ans!='n');

}


--