如何将文本框的值分配给变量?

时间:2012-03-04 10:07:15

标签: php textbox

如何将文本框的值分配给变量?

这是我的表格:

<form id="" method="post" action="photo_upload.php" enctype="multipart/form-data">
<table align="center" cellpadding="0" cellspacing="0" border="0" width="650px">
  <tr>
  <td colspan="7">
  <input type="text" id="albumName" name="albumName" value="jaghamachi"/>  
  </td>
  </tr>
  <tr>
  <td width="50px" align="center"/>
  <td align="center" width="100px">Upload Pics::</td>
  <td align="center" width="50px"/>
  <td align="center" width="200px">
      <input type="file" id="file" name="file"/>
  </td>
  <td align="center" width="50px"/>
  <td align="center" width="100px">
      <input type="submit" name="submit" id="submit" value="submit" class="button" style="width: 100px;" />
  </td>
  <td align="center" width="50px"/>   
  <tr>
  <td height="16px"/>
  </tr>
  </table>
  </form>
<?php
// here i want a code similar to string str = Text1.Text like in .net;
//i want a code smthng like this 
//$value= albumName.value; how to do it?? here albumName is the textbox type in above form
?>

如何在不使用javascript或jquery的情况下完成?

2 个答案:

答案 0 :(得分:1)

你可以这样做:

$albumName = $_POST['albumName'];

下面:

  • $albumName是包含名为albumName
  • 的文本框值的变量名称
  • $POST是表单方法POST,例如<form method="POST"

注1: 为此,我们假设您首先提交表单。

注2: 要提交到同一页面,请将action标记的<form>属性设置为空

答案 1 :(得分:0)

您唯一能做的就是发布表单和$_POST

中的值