Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

จะเขียนโปรแกรม Hello World แรกโดยใช้การเขียนโปรแกรม CGI ใน Python ได้อย่างไร


โปรแกรม CGI แรก

สคริปต์ CGI ชื่อ hello.py ถูกเก็บไว้ในไดเร็กทอรี /var/www/cgi-bin และมีเนื้อหาดังต่อไปนี้ ก่อนรันโปรแกรม CGI เราต้องแน่ใจว่าเราเปลี่ยนโหมดของไฟล์โดยใช้คำสั่ง chmod 755 hello.py UNIX เพื่อให้ไฟล์ปฏิบัติการได้

ตัวอย่าง

#!/usr/bin/python
print "Content-type:text/html\r\n\r\n"
print '<html>'
print '<head>'
print '<title>Hello Word - First CGI Program</title>'
print '</head>'
print '<body>'
print '<h2>Hello Word! This is my first CGI program</h2>'
print '</body>'
print '</html>'

ผลลัพธ์

ถ้าคุณคลิก hello.py สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

Hello Word! This is my first CGI program