Welcome Guest, Not a member yet? Register   Sign In
Edit data
#1

[eluser]JohnnyBravo[/eluser]
Hi!

I'm newby here and in the world of CI too. I started to develop a little application, and I'm facing a problem.

So, I want to edit data in my database table. I get the original data from the table:

Here's my view file:
Code:
...
<div class="row">
        <label for="name" class="required">Csoportnév:</label>
        &lt;input type="text" name="name" id="name" value="&lt;?php echo set_value('name');?&gt;" class="text" /&gt;
    </div>
    
    <div class="row">
        <label for="crm">CRM!:</label>
        &lt;input type="radio" name="crm" id="crm" value="a" class="checkbox" &lt;?php echo set_radio('crm', 'a'); ?&gt; /&gt; Szerkesztés
        &lt;input type="radio" name="crm" id="crm" value="v" class="checkbox" &lt;?php echo set_radio('crm', 'v', TRUE); ?&gt; /&gt; Megtekintés
        &lt;input type="radio" name="crm" id="crm" value="n" class="checkbox" &lt;?php echo set_radio('crm', 'n'); ?&gt; /&gt; Nincs hozzáférés
    </div>
    
    <div class="row">
        <label for="register">Regiszter!:</label>
        &lt;input type="radio" name="register" id="register" value="a" class="checkbox" &lt;?php echo set_radio('register', 'a'); ?&gt; /&gt; Szerkesztés
        &lt;input type="radio" name="register" id="register" value="v" class="checkbox" &lt;?php echo set_radio('register', 'v', TRUE); ?&gt; /&gt; Megtekintés
        &lt;input type="radio" name="register" id="invoices" value="n" class="checkbox" &lt;?php echo set_radio('register', 'n'); ?&gt; /&gt; Nincs hozzáférés
    </div>
...

I can get the original data from the database, but how can I show them in this form from the database.

I hope, you understand it. Smile
I've tried the search function, but didn't find the answer (Maybe, I've choose wrong keywords...).

Thanks a lot!


Messages In This Thread
Edit data - by El Forum - 02-15-2010, 05:45 AM
Edit data - by El Forum - 02-15-2010, 05:52 AM
Edit data - by El Forum - 02-15-2010, 07:51 AM
Edit data - by El Forum - 02-15-2010, 08:16 AM
Edit data - by El Forum - 02-16-2010, 02:06 AM



Theme © iAndrew 2016 - Forum software by © MyBB