如何用php控制 select 中的选定值?
比如我有个select的表单
<select name="select_1"><option value=""></option><option value="value_1">option_1</option><option value="value_2">option_2</option>.....<option value="value_n">option_n</option></select></td>
最后的n也许会很大,我的设计是用户表单提交后,存入mysql,然后用户可以再编辑,那么在编辑页面,这个单选表单必须显示为mysql中的值为选中状态。我已经把mysql中的值读出来了是 $value_select_1,那怎么用php控制这个select_1表单将value为$value_select_1的值选中呢?
刚学php不久,希望不吝赐教。
回复讨论(解决方案)
数据库内的数据那就是已经保存的数据 输出的时候 取这个数值 1 然后 foreach 输出时判断这个数值是否相等,相等即是 selected.
数据库内的数据那就是已经保存的数据 输出的时候 取这个数值 1 然后 foreach 输出时判断这个数值是否相等,相等即是 selected.
版主 给我远程下巴
我那个环境还不行呢!!!!
数据库内的数据那就是已经保存的数据 输出的时候 取这个数值 1 然后 foreach 输出时判断这个数值是否相等,相等即是 selected.
妞妞
$value_select_1=1;$select_arr=array('value_1','value_2','value_3','value_4');foreach ($select_arr as $value){ if(intval(substr($value,-1,1))==$value_select_1) echo $value.' selected';}
$value_select_1=1;$select_arr=array('value_1','value_2','value_3','value_4');foreach ($select_arr as $value){ if(intval(substr($value,-1,1))==$value_select_1) echo $value.' selected';}
谢谢版主,可是为什么是-1到1呢?
$value_select_1=1;$select_arr=array('value_1','value_2','value_3','value_4');foreach ($select_arr as $value){ if(intval(substr($value,-1,1))==$value_select_1) echo $value.' selected';}
谢谢版主,可是为什么是-1到1呢?
明白了,就取最后一位,感谢!
<?phpecho '<select name="select_1" id="select_1">';echo '<option value=""></option>';for($i=1; $i<=10; $i++){ echo '<option value="value_'.$i.'">option_'.$i.'</option>';}echo '</select>';$cur = 10;echo '<script type="text/javascript">';echo 'document.getElementById("select_1").value = "value_'.$cur.'";';echo '</script>';?>
最好写成函数,提高代码的重复利用
<?phpecho '<select name="select_1" id="select_1">';echo '<option value=""></option>';for($i=1; $i<=10; $i++){ echo '<option value="value_'.$i.'">option_'.$i.'</option>';}echo '</select>';$cur = 10;echo '<script type="text/javascript">';echo 'document.getElementById("select_1").value = "value_'.$cur.'";';echo '</script>';?>
这个好,不过可惜我已经结帖了不能再给你分了,但还是表示非常感谢

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

Laravel simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:
