Home  >  Article  >  Backend Development  >  How to pass value in php page

How to pass value in php page

巴扎黑
巴扎黑Original
2016-11-21 10:04:071150browse

PHP page value transfer

Does not use a form to transfer the value of the drop-down box. In fact, it is very simple and can be achieved by using js to obtain it. See the code below

<script type="text/javascript"> 
function getsel(){
var obj = document.getElementById("sel").value;
if(obj== ""){
obj = "0";
}
    var newhref = "b.php?obj="+obj;
    var ona = document.getElementById(&#39;ona&#39;);
    ona.href = newhref;
}
</script>
<select id="sel">
      <?php foreach ($sql_res as $value) { ?>
<option value="<?php echo $value[belongs];?>"><?php echo $value[belongs];?></option>
 <?php };?>
</select>
<a id=&#39;ona&#39; href="" target="_blank" onclick="getsel()">传值</a>

It can be achieved by assigning a value to the href of the a tag at the click time

In b. php just needs to get the parameters

<?php
$obj = $_REQUEST[&#39;obj&#39;];
echo $obj;
?>


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn