If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Data Access, Manipulation & Batch Languages > PHP > list item

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 02-10-10, 11:54
don_log don_log is offline
Registered User
 
Join Date: Jun 2008
Location: pakistan
Posts: 109
list item

how can i save list item just like a form field suppose i have a text field name as object..i want to save it using php so i write $_POST['object']
so i want to save the value of list items like i have 3 list item and i named this list as "itemlist"

1.hello
2.hi
3.how are u

Now i want to save these item if user select hi so how can i declare that something like that am i right or wrong just tell me

$lisst=$_POST['itemlist'];
if i am right then tell me and if i am wrong then also tell me how to write correct code or point out any tutorial which can point out my view ...
Reply With Quote
  #2 (permalink)  
Old 02-13-10, 12:23
bharanidharanit bharanidharanit is offline
Registered User
 
Join Date: Nov 2008
Posts: 115
If you want to select any one from the lists, use this coding
Code:
<form method="post">
<input type="radio" name="item_list" value="hi"> hi
<br>
<input type="radio" name="item_list" value="hello"> hello
<br>
<input type="radio" name="item_list" value="how_are_you"> how are you
</form> 
<?PHP
$_POST['item_list']
?>
Reply With Quote
  #3 (permalink)  
Old 02-14-10, 15:08
don_log don_log is offline
Registered User
 
Join Date: Jun 2008
Location: pakistan
Posts: 109
thanks dude help full me but i found it before but thanks once again cause you reply
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On