3
Answers

PHP, MySQl

Suppose I have a admin panel in a website,and when a user login in  a website as we do in facebook and gmail,how can i store the values which is entered by user in the given fields inside website in the assigned table of that login user in the MySql Database......
Answers (3)
0
Satyapriya Nayak

Satyapriya Nayak

NA 53k 8m 11y
private void Form6_Load(object sender, EventArgs e)
        {
            comboBox1.Text = "Select experience";
            int expe;
            for(expe=0;expe<=30;expe++)
            {
                comboBox1.Items.Add(expe);
            }
        }