简体   繁体   中英

can't get values form html select to php

i can't get values from the HTML select menu to js and from there to sql... the problem is in the JS code - it's probably caused by bad syntax... or misplace values.....

here is the varibles from the JS file

var select = $('select.select').val();

here is the varibles from the PHP file

$select = filter_var($_POST['select.value'],FILTER_SANITIZE_STRING);

here is the SELECT menu from the HTML file

 <select name ="select" class="select">

<option disabled selected id="none"> -- select an option -- </option>
<option value="roy">roy</option>

here is the FULL code , the PHP code is in the Console area - because i didn't manage to upload the code correctly...

code Thanks Ahead !

$_POST使用name="select" ,因此:

$select = filter_var($_POST['select'],FILTER_SANITIZE_STRING);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM