Changes between Version 7 and Version 8 of BoltIntro


Ignore:
Timestamp:
Oct 3, 2007, 12:29:44 PM (17 years ago)
Author:
davea
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BoltIntro

    v7 v8  
    4747== Creating exercises ==
    4848
     49{{{
     50<?php
     51require_once('bolt.php');
     52echo 'Conifers are so named because:';
     53bolt_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
     66require_once('bolt.php');
     67echo 'Click on the dog's nose:';
     68bolt_image_rect(
     69   'dog.jpg',
     70   array(100, 60, 110, 70)
     71);
     72?>
     73}}}
     74
    4975== Course documents ==
    5076