Link to home
Start Free TrialLog in
Avatar of TonyReba
TonyRebaFlag for United States of America

asked on

Add fields on view/edit User admin page

I was able to insert extra information on a second table called employeeinfo in the joomla database, now I would like to be able to retrieve that extra information and show in the page :


http://localhost:8080/mysite/administra ... k=edit&cid[]=83


What would I need to do so besides the regular information name, username, email , I can read from my other table.......

this is the code I have modified so far in form.php

THANKS IN ADVANCE

Code:

         <tr>
               <td class="key">
                  <label for="department">
                     <?php echo JText::_( 'Department' ); ?>
                  </label>
               </td>
               <td>
                       
                  <input class="inputbox" type="text" name="email" id="email" size="40" value="<?php echo $this->user->get('department'); ?>" />
               </td>
            </tr>

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of tyronenoel
tyronenoel

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial