html遠端訪問雲服務cgi,實現簡單的加法計算

2021-09-29 07:31:19 字數 1803 閱讀 5333

/啟動伺服器檢視是否開啟:

/檢視伺服器啟動後的狀態配置好以後,瀏覽器新開啟乙個視窗,輸入:

30 text=隸書》

+<

/font>

"text" size=

30 maxlength=

100 name=y>

"submit" value=

"submit"

>

"reset" value=

"reset_parameters"

>

<

/form>

<

/td>

<

/tr>

<

/table>

<

/body>

<

/html>

#include

#include

intmain

(void

),y[10]

=;//定義字元型陣列,用於儲存來自網頁的資料

printf

("content-type:text/html\n\n");

//要將以下的輸出語句輸出在頁面上就必須加此行**,\n\n為換行,兩個換行即中間要空一行,這是規範

printf

("\n");

printf

("\n");

poststr=

getenv

("content_length");

//計算從網友傳輸過來的資料的長度

if(poststr==

null

)printf

("error input,no data!

\n")

;else

int a=

atoi

(x);

//接收到的資料為字串型別,需要轉換成整型才能進行加減運算

int b=

atoi

(y);

// printf("%d\t%d",a,b);

int c=a+b;

printf

("%d"

,c);

//列印結果

printf("

\n")

;printf

("\n");

printf

("\n");

fflush

(stdout);

return0;

}

gcc test4.c -o test4.cgi

mysqlworkbench訪問遠端伺服器

1 如果伺服器有防火牆,需要關一下 systemctl stop firewalld.service 停止firewall systemctl disable firewalld.service 禁止firewall開機啟動 firewall cmd state 檢視預設防火牆狀態 關閉後顯示not...

mysql伺服器遠端訪問

mysql預設是不允許外部ip通過root使用者訪問本地資料庫伺服器,可以通過下面的語句設定,讓外部ip訪問本地mysql資料庫伺服器 grant all on to username identified by password with grant option flush privileges...

遠端訪問伺服器jupyter notebook

在工作環境用的是windows xp系統,上面安裝anaconda只能安裝到 python3.4,有很多模組用起來很不方便,正好自己的筆記本是mac,想將mac上的notebook 做成乙個伺服器,用工作電腦window 的瀏覽器來訪問這個伺服器.參考 按上面方法做,但有乙個坑 u sha1 67c...