Changes between Version 7 and Version 8 of BoltIntro
- Timestamp:
- Oct 3, 2007, 12:29:44 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BoltIntro
v7 v8 47 47 == Creating exercises == 48 48 49 {{{ 50 <?php 51 require_once('bolt.php'); 52 echo 'Conifers are so named because:'; 53 bolt_exclusive_choice( 54 array( 55 'They are cone-shaped.', 56 'They originated during the Coniceous era.', 57 'They carry their seeds in cones.' 58 ), 59 2 60 ); 61 ?> 62 }}} 63 64 {{{ 65 <?php 66 require_once('bolt.php'); 67 echo 'Click on the dog's nose:'; 68 bolt_image_rect( 69 'dog.jpg', 70 array(100, 60, 110, 70) 71 ); 72 ?> 73 }}} 74 49 75 == Course documents == 50 76