Advertisement
Guest User

Untitled

a guest
Feb 13th, 2013
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.82 KB | None | 0 0
  1. </tr>
  2.                     <tr>
  3.                     <td><?php echo $entry_author; ?></td>
  4.                     <td><input type="text" name="author" value="<?php echo $author; ?>" /></td>
  5.                     </tr>
  6.                     <tr>
  7.                     <td><?php echo $entry_pages; ?></td>
  8.                     <td><input type="text" name="pages" value="<?php echo $pages; ?>" /></td>
  9.                     </tr>
  10.                     <tr>
  11.                     <td><?php echo $entry_show_timer; ?></td>
  12.                     <td><?php if ($show_timer) { ?>
  13.                     <input type="radio" name="show_timer" value="1" checked="checked" />
  14.                     <?php echo $text_yes; ?>
  15.                     <input type="radio" name="show_timer" value="0" />
  16.                     <?php echo $text_no; ?>
  17.                     <?php } else { ?>
  18.                     <input type="radio" name="show_timer" value="1" />
  19.                     <?php echo $text_yes; ?>
  20.                     <input type="radio" name="show_timer" value="0" checked="checked" />
  21.                     <?php echo $text_no; ?>
  22.                 <?php } ?></td>
  23.     </tr>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement