php 表单提交无反应
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 表单提交无反应相关的知识,希望对你有一定的参考价值。
<?php
include("fckeditor/fckeditor.php") ;
$oFCKeditor = new FCKeditor('con') ;//实例化
$oFCKeditor->BasePath = 'fckeditor/';//这个路径一定要和上面那个引入路径一致,否则会报错:找不到fckeditor.html页面
//$oFCKeditor->Value = '' ;
$oFCKeditor->Width = '100%' ;
$oFCKeditor->Height = '300' ;
//$oFCKeditor->Create() ;
if (isset($_POST["submit"]))
echo "标题:".@$_POST["title"];
echo "内容:".@$_POST["con"];
?>
<form action="" methotd="post">
<input type="text" name="title" value="">
<?php
$oFCKeditor->value="在这里输入新闻内容";
$oFCKeditor->Create() ;
?>
<input type=submit name="submit" value="提交">
</form>
<form action="test.php" methotd="post">
2. <input type=submit name="submit" value="提交">,修改为:
<input type="submit" name="submit" value="提交">追问
其实最初我就是这么写的 但是提交之后还是不行 所以就来会修改成这样了
修改过来之后 还是不行 之前遇到post之类的操作的时候都出现这样的问题 至今没有一次 提交成功的。。。。。。。。。。。
在提交按钮上反应原生表单处理
【中文标题】在提交按钮上反应原生表单处理【英文标题】:React Native Forms Handling on Submit Button 【发布时间】:2022-01-03 03:24:58 【问题描述】:我是 React Native 的新手。我正在构建一个应用程序,其中有一个联系表。我想收集所有表单字段数据,并希望在单击提交按钮时将用户输入的这些详细信息发送到特定的电子邮件。 我怎样才能做到这一点? 提前致谢
【问题讨论】:
【参考方案1】:不确定您是否可以直接从 react native 应用程序直接发送电子邮件。
您可以尝试使用react-native-email 包。它很容易集成。该软件包使用 Linking API
import email from 'react-native-email'//imports the package
handleEmail = () => //function to send email
const to = ['tiaan@email.com', 'foo@bar.com'] // string or array of email addresses
email(to,
// Optional additional arguments
cc: ['bazzy@moo.com', 'doooo@daaa.com'], // string or array of email addresses
bcc: 'mee@mee.com', // string or array of email addresses
subject: 'Show how to use',
body: 'Some body right here'
).catch(console.error)
【讨论】:
以上是关于php 表单提交无反应的主要内容,如果未能解决你的问题,请参考以下文章