1樓:釣俠
表單直接傳遞,**如下!
建立go.php 檔案中的**如下!
<?php
@$name = $_post['name'];
if(!empty($name))else?>
**解釋
@$name = $_post['name'];
@錯誤抑制
1、常見變數$name = post過來的name值2、empty($name)檢查是否為空,在前面加上!表示不為空,不為空就顯示$name的值
3、為空顯示錶單
4、action="go.php"表示表單填寫的值將傳遞到,go.php
5、method="post" 表示傳遞方式為post6、文字輸入框
7、提交 提交按鈕
html,php,post怎麼傳引數?
2樓:
//a.php
<?php
print_r ($_post);
?>
回答:我想把從資料庫裡提取的值,譬如帖子編號rs['id'],用post的方法傳到別的檔案、
//////
為了實現這樣的效果,你可以先在a.php頁面把那個值下放到html中 比如。
當前訪問的頁面時a.php
<?php
//從資料庫得到你要的資料
$;
?>
或者直接使用php的session 而不需要來用html的post來傳值。
在a.php中直接$_session["myid"]="9";
到b.php中直接使用$id=$_session["myid"];
這樣就可以了。
3樓:匿名使用者
<?php
$num1= isset($_request["num1"]) ? $_request["num1"] : '';
$num2=isset($_request["num2"]) ? $_request["num2"] : '';
$oper=isset($_request["oper"]) ? $_request["oper"] : '';
echo'接收到'.$num1.'和'.$num2.'和'.$oper;
4樓:
html頁面
php頁面 也就是1.php
print_r($_post); 以陣列形式輸出 $_postecho $_post['exname'];輸出傳過來的 exname;
php使用超連結傳遞表單的值?
5樓:bai渡wo愛
php的話都要傳遞動作才能取值。你可以試試js,完全按照你的要求。註冊
6樓:匿名使用者
換成$_get['username']就可以了啊
php curl post怎麼傳值
7樓:
$post_data = array ("name" => "***","mobile" => "12345");
curl_setopt($ch, curlopt_postfields, $post_data);
$post_data為陣列
8樓:sb月
$ch = curl_init();
curl_setopt($ch, curlopt_url,$list_url);
curl_setopt($ch, curlopt_referer,$list_urled);
curl_setopt($ch, curlopt_post, 1);
curl_setopt($ch, curlopt_header, 0); //是否顯示標頭檔案
curl_setopt($ch, curlopt_postfields, $post_data); //上傳屬性
curl_setopt($ch, curlopt_cookiefile, $cookie_file); //cookie存放的資料夾
curl_setopt($ch, curlopt_returntransfer,1); //是否流
curl_setopt($ch, curlopt_proxy, '120.9.127.1:6675'); //使用**
curl_setopt($ch, curlopt_verbose,1); //出錯提示
curl_setopt($ch, curlopt_useragent, "mozilla/4.0 (compatible; msie 6.0; windows nt 5.
0)"); //模擬瀏覽器
curl_setopt($ch, curlopt_nobody,true); //指定了curl抓的內容中包含header頭,並且不要body內容
curl_exec($ch);
裡面的$post_data就是你要post的上傳的資料內容
希望對你能有所幫助。
9樓:匿名使用者
1、設定請求方式為post
curl_setopt($ch, curlopt_customrequest, "post"); #設定post請求
2、設定post請求內容和請求長度
curl_setopt($ch, curlopt_postfields,$data);#設定post資料
更多php相關的知識,可以參考:php程式設計師,雷雪松的個人部落格。
excel中某一列含有大量超級連結和普通文字的組合,如何提取其中的超級連結至另一列
含超級連結的與普通文字的顏色不一樣,選中列所有內容,右鍵按字型顏色篩選,將篩選內容拖至另一列。放到e列,你自己改個列放。這個遍歷了整個表的所有連線。private function myfunction dim hlink as hyperlink,i as longfor each hlink i...
PHP如何呼叫API介面,php中如何呼叫介面以及編寫介面程式碼詳解
人家會給你一個地址 就是介面 比如 然後會給你一個引數說明 和 錯誤返回值 比如版 然後 curl 或者 file get contents 兩種方法都可以權 php中如何呼叫介面以及編寫介面 詳解 可以用curl獲取借樓的資訊。所謂介面,就是提供一個url,只要你滿足它要求的引數,就能得到你要的資...
php函式大全,php中如何建立函式庫
我來貼個中文的,也是最權威 最新的官方手冊 暈你幹嘛?要看函式當然看官方手冊了,php中如何建立函式庫 函式庫都是慢慢積累起來的,你把覺的好的函式存起來,慢慢就會成為一個函式庫了 函式庫 就想一個方法類,需要長時間功能的總結。集合成一個庫。以便以後使用 php函式也太多了.常用的也不過幾十個,做2 ...