check box
-
how can i get the checkbox text from database field name.. for example i have table.. no Fname Mname Lname 1 bilal khatri yousuf 2 faheem chania ali how can iger the Fname in checkbox1. . . .
-
how can i get the checkbox text from database field name.. for example i have table.. no Fname Mname Lname 1 bilal khatri yousuf 2 faheem chania ali how can iger the Fname in checkbox1. . . .
In HTML your output would be like this:
<INPUT TYPE='CHECKBOX' VALUE='1' ID='Name1'><LABEL FOR='Name1'>bilal khatri yousuf</LABEL><br/>
<INPUT TYPE='CHECKBOX' VALUE='2' ID='Name2'><LABEL FOR='Name2'>faheem chania ali</LABEL>But I am not sure if this is what you want to know.
I wish I could believe there is an after life.
-
how can i get the checkbox text from database field name.. for example i have table.. no Fname Mname Lname 1 bilal khatri yousuf 2 faheem chania ali how can iger the Fname in checkbox1. . . .
-
how can i get the checkbox text from database field name.. for example i have table.. no Fname Mname Lname 1 bilal khatri yousuf 2 faheem chania ali how can iger the Fname in checkbox1. . . .
Get the text into a string , split it by space and get the first name. :)