Jump to content

Combining form fields


dmschenk

Recommended Posts

How can I combine several form fields together to fill one DB field.

Basically what I want to do is have several combo boxes combined to create a date like this:  March 10, 2001, 5:16 pm

one for each portion of the date

Creating the indiviual comboboxes is easy enough, (even I can do it) but to get them into one DB field is difficult for me.

How do I go about this?

 

Thanks

Dave

 

Link to comment
Share on other sites

<script type="text/javascript" language="javascript">

var mon = document.form1.select1.selectedIndex].value; --> "March"
var dat = document.form1.select2.selectedIndex].value; --> "10"
var yea = document.form1.select3.selectedIndex].value; --> "2001"
var tim = document.form1.select4.selectedIndex].value; --> "5:16 pm"
var out = mon + " " + dat + "," + yea + ", " + tim;

alert (out); --> alerts "March 10, 2001, 5:16 pm"
</script>

Link to comment
Share on other sites

In PHP also, you can concatenate all elements into one variable by just doing like the below one

 

$combined_date = "$month $day, $year, $time";

 

The Variables in the right side are got from the previous page as GET [or] POST values.

 

 

Regards,

Suresh P

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.