0

vtiger リード モジュールにデータを保存しようとしています。file_get_contents() 経由で変数を送信できますが、機能しません。ここに私のコードがあります

$moduleName = $_POST['moduleName']; 
$company    = $_POST['company']; 
$firstname  = $_POST['firstname'];
$lastname   = $_POST['lastname']; 
$website    = $_POST['website']; 
$phone      = $_POST['phone']; 
$email      = $_POST['email']; 
$city       = $_POST['city']; 
$state      = $_POST['state'];
$code       = $_POST['code']; 

$post = http_build_query(array(

"firstname" => "$firstname",
"lastname" => "$lastname",
"website"=>"$website",
"phone"=>"$phone",
"email"=>"$email",
"city"=>"$city",
"state"=>"$state",
"code"=>"$code",
 "moduleName" => "$moduleName",
   "company " => "$company",

));

 $context = stream_context_create(array("http"=>array(
 "method" => "POST",
 "header" => "Content-Type: application/x-www-form-urlencoded\r\n" .
             "Content-Length: ". strlen($post) . "\r\n",  
 "content" => $post,
))); 

$page = file_get_contents("http://vtiger.com/modules/Webforms/post.php", false, $context);

私を助けてください。

4

1 に答える 1

0

Web フォームを正しく使用してください。vtiger 5.4 では、そのインターフェイスを使用して簡単に Web フォームを作成できます。データを作成、編集、削除するユーザー vtiger Web サービス

于 2013-01-08T06:50:33.177 に答える