所以,我有一个网站与表单,我需要一个网页在网站上,始终更新与最新的表单数据。
这里基本上是我所需要的,假设表单的页面是"mywebsite.com/form.php",带有表单数据的页面是"mywebsite.com/data.php“。假设表单的变量是name。假设Jeff接受表单,对于他插入的名称"jeff",表单将获得变量并将其重定向到"mywebsite.com/data.php? name =Jeff“,假设Dave转到"mywebsite.com/data.php",他将得到一个没有name变量的空白页面。我需要的是,
我试图在提交表单时自动将联系人添加到常量联系人列表中,并从使用常量contact addOrUpdateContact API的v2示例代码开始。当我提交表单时,我会得到以下错误:
Catchable fatal error: Argument 3 passed to Ctct\Services\ContactService::addContact() must be of the type array, boolean given, called in /home/cspacetribeca/public_html/mh/test.php on line 65 and defined in
当我尝试从我的路由中使用update方法时,我会得到这个错误。
The UPDATE method is not supported for this route. Supported methods: GET, HEAD, POST, DELETE.
我正在使用Laravel构建我的项目,并在web.php中通过路由定义了web.php。
Route::get('/{post:slug}', [PostController::class, 'show']);
Route::delete('/{post:slug}', [PostControll
我使用的表格提供的拉拉维尔集体,它是正确的安装。我要做的是验证PictureController.php中的表单,如下所示:
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\Picture;
use DB;
class PictureController extends Controller
{
/**
* Create a new controller instance.
*
* @return void
*/
pub
如何将变量传递给contact.php,以便在表单上回显。我可以将表单传递给电子邮件收件人,但是,我在尝试打印表单时束手无策。
例如,我想设置$somevariable="This will be my default Subject",通过contact.js传递变量,并且能够在contact.php中接收变量,并为表单上的主题使用value="#somevaraible“。
谢谢!