Advertisement
Guest User

Untitled

a guest
Nov 20th, 2012
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Controller Portion that applies to this issue:
  2.  
  3.     if ($web_url_session = $this -> session -> userdata('campaign_user_website'))
  4.         {
  5.             $data['web_input'] = $web_url_session;  
  6.         }
  7.         else
  8.         {
  9.             $data['web_input'] = 'http://';    
  10.         }
  11.  
  12.     $this -> load -> view($data['customize_view'], $data);
  13.  
  14. My view that applies to this issue:
  15.  
  16.     <input type="text" name="web_address" class="wizardInput urlField" value="<? echo $web_input; ?>">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement