home *** CD-ROM | disk | FTP | other *** search
/ Practical Internet Web Designer 89 / PIWD89.iso / pc / CONTENTS / DEVELOPER / TUTORIAL_FILES / Pages90-91 / extracode.php < prev    next >
PHP Script  |  2003-12-08  |  1KB  |  50 lines

  1. <?php
  2. if($edit == true)
  3. {
  4. ?>
  5.  
  6. <form method="post" action="edit.php">
  7. <p>Title:
  8. <br /><input name="contentTitle" id="contentTitle" class="text" value="<?=$title?>" /></p>
  9.  
  10. <p>Content:
  11. <br /><textarea name="contentText" id="contentText" class="largeText"><?=$content?></textarea></p>
  12.  
  13. <p>Category:
  14. <br /><select name="catID" id="catID">
  15. <?php
  16. while ($row = mysql_fetch_array($result)) {?>
  17. <option value="<?=$row['catID']?>"<?php
  18. if ($row['catID'] == $catID)
  19. {
  20.     print " selected=\"selected\"";
  21. }
  22. ?>><?=$row['catName']?></option>
  23. <?php
  24. }
  25. ?>
  26. </select></p>
  27. <input type="hidden" name="contentID" id="contentID" value="<?=$_GET['contentID']?>" />
  28. <p><input type="submit" name="btnEdit" value="Update Item" class="submit" /></p>
  29. </form>
  30.  
  31. <?php
  32. }
  33. else
  34.  
  35.  
  36.  
  37. {
  38. ?>
  39. <p>Select the content you wish to edit or delete from the list below by clicking on the title.</p>
  40. <ul>
  41. <?php
  42. while ($row = mysql_fetch_array($result)) {
  43.     print("<li><a href=\"edit.php?edit=true&contentID=" . $row[contentID] . "\">" . $row[contentTitle] . "</a></li>\n");
  44. }
  45. ?>
  46. </ul>
  47. <?php
  48. }
  49. ?>
  50.