将基于州和国家/地区的时区添加到 MYSQL 表中
我有一个 mysql 表,其中包含以下数据(姓名,地址,性别,城市州,邮政编码,国家/地区,时区)当用户填写表单以添加此数据时,我希望根据状态添加相关时区和国家,我该怎么做?
谢谢,
I have a mysql table with data like (name, address, sex, city state, zip, country, timezone) When a user fills in the form to add this data, i would like the relevant time-zone to be added based on state and country, how can i do this?
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不在您的表单中添加以下选择框?
这将处理存在多个时区的州这一事实。当您获得此表单提交的结果时,您可以分解“/”上的字段值,其中
$_POST['locale']
是所选选择选项的处理程序,然后您可以从单个字段中提取时区、国家/地区和州。Why not have the following select box in your form?
This would handle the fact there are states with multiple timezones. When you then get the result of this form submission, you can explode the value of the field on '/', where
$_POST['locale']
is the handler for the chosen select option, then you can extract timezone, country and state from a single field.