Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
190 views
in Technique[技术] by (71.8m points)

php - Simple Save Dropdown Selection to Database Mysqli

Looking for the quick simple answer to storing simple dropdown (or checkbox, whichever is easier) selection into my database.

Example: I have the user input their hour, min (for time) and then dropdown select AM or PM. I want the choice to save into the database when they hit submit. The other 15 fields of the form submit correctly, except my dropdown choices. Right now, I have "-" as the selected default and it is storing as NULL in my table (as I want it to if "-" is left as the choice). I'm assuming I need a Java code?

This is the code part of my form for the dropdown:

<div class="col-md-1">
      <label for="arrive-arrive-ap">Select</label>
      <select id="arrive-arrive-ap" class="form-control">
        <option selected>-</option>
        <option>AM</option>
        <option>PM</option>
      </select>
      </div>

This is the processing end of it:

$arrive_arrive_ap = $_GET["arrive-arrive-ap"];
$arrive_arrive_ap = addslashes ($arrive_arrive_ap); //I know this is unnecessary with a dropdown, but just to be safe..

//Then it is inserted into my DB with a prepared statement.
question from:https://stackoverflow.com/questions/65622755/simple-save-dropdown-selection-to-database-mysqli

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...