Advertisement
Guest User

Untitled

a guest
Apr 20th, 2014
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <input name="university" type="text" id="university" value="<? echo $uni_name['name'] ?>">
  2.  
  3. <input <?php echo empty($uni_name['name']) ? '' : 'readonly' ?> name="university" type="text" id="university" value="<?php echo $uni_name['name'] ?>">
  4.  
  5. <input name="university" type="text" id="university" value="<?= $uni_name['name'] ?>" <?= $uni_name['name'] ? 'readonly="true"' : '' ?>>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement