byojiaoxianz7 发表于 2018-8-8 11:50:28

php如何通过TCP/IP协议把表单内容发送出去

本帖最后由 byojiaoxianz7 于 2018-8-8 11:51 编辑

具体问题是这样的

有一个表单

<form action="" method="">
    <hr align="center" width="50%" />
    <p>本 机 I P<input name="ip" type="text"></p>
    <p>子 网 掩 码 <input name="zwym" type="text"></p>
    <p>网 关 地 址 <input name="wgdz type="text"></p>
    <p>DNS 服务器 <input name="dns" type="text"></p>

    <input type="submit" name="submit" value="保存设置">
    <input type="reset" name="submit" value="不保存设置">
    <hr align="center" width="50%" />
</form>




如何通过TCP/IP协议发送表单的数据
又如何接受这个发来的数据

请各位指教一下,谢谢了
不知道这个功能能不能实现

无符号整形 发表于 2018-8-8 12:19:46

selenium

byojiaoxianz7 发表于 2018-8-8 22:18:50

无符号整形 发表于 2018-8-8 12:19
selenium

emmm 没接触过这个 请问怎么使用

无符号整形 发表于 2018-8-9 07:46:23

byojiaoxianz7 发表于 2018-8-8 22:18
emmm 没接触过这个 请问怎么使用

就当我没说
我还以为你说python呢

会上树的猪 发表于 2018-8-9 20:25:01

你表单写错了,post参数没有设置值,表单要么通过js代码自动提交,要门你添加post或者get参数提交。
像这样:<form method="post" action="">

byojiaoxianz7 发表于 2018-8-9 21:38:57

会上树的猪 发表于 2018-8-9 20:25
你表单写错了,post参数没有设置值,表单要么通过js代码自动提交,要门你添加post或者get参数提交。
像这 ...

我知道..我故意删的,我是要发送tcp,不是post或者get

会上树的猪 发表于 2018-8-10 09:43:23

byojiaoxianz7 发表于 2018-8-9 21:38
我知道..我故意删的,我是要发送tcp,不是post或者get

post或get发送使用的是http协议,http协议属于tcp/ip协议族。而我所了解的是TCP是可靠传输控制协议,他好像只用于建立连接。

byojiaoxianz7 发表于 2018-8-10 13:21:10

会上树的猪 发表于 2018-8-10 09:43
post或get发送使用的是http协议,http协议属于tcp/ip协议族。而我所了解的是TCP是可靠传输控制协议,他好 ...

所以我这个功能实现不了了吗

会上树的猪 发表于 2018-8-10 17:50:53

byojiaoxianz7 发表于 2018-8-10 13:21
所以我这个功能实现不了了吗

form表达就是通过HTTP协议向服务器交互的,我不是很明白为什么你会有用TCP协议传输的想法。另外HTTP协议是TCP/IP协议族中的应用层协议

byojiaoxianz7 发表于 2018-8-11 11:49:14

会上树的猪 发表于 2018-8-10 17:50
form表达就是通过HTTP协议向服务器交互的,我不是很明白为什么你会有用TCP协议传输的想法。另外HTTP协议 ...

我一学长问的,把我问懵了

takeshi 发表于 2018-9-12 16:11:47

GET   或者POST
<form action="1.php" method="GET">
    <hr align="center" width="50%" />
    <p>本 机 I P<input name="ip" type="text"></p>
    <p>子 网 掩 码 <input name="zwym" type="text"></p>
    <p>网 关 地 址 <input name="wgdz" type="text"></p>
    <p>DNS 服务器 <input name="dns" type="text"></p>

    <input type="submit" name="submit" value="保存设置">
    <input type="reset" name="submit" value="不保存设置">
    <hr align="center" width="50%" />
</form>



1.php 接收
<?php
echo "本 机 I P"._GET["ip"];
echo "子 网 掩 码"._GET["zwym"];
echo "网 关 地 址"._GET["wgdz"];.
echo "DNS 服务器"._GET["dns"];
?>
页: [1]
查看完整版本: php如何通过TCP/IP协议把表单内容发送出去