Note:

If you want to create a new page for developers, you should create it on the Moodle Developer Resource site.

Upgrading Script To Transfer From WebCT To Moodle

From MoodleDocs

Description of the code modifications done initially most as a day-to-day work reports.

index.php

The initial course name (i.e. CHI2300_1) is used in the quizDB so it should be stored during this first step. It is added as a input type ="hidden" and stored in global $data

echo "\n  <li> <form action='./'><strong>$nxtfile</strong><br />
Import this file using course code "
 . " <input type='text' name='crscode' maxlength='15'
      value='".htmlspecialchars(preg_replace('/^(.*?)_COURSE.*$/', "$1", $nxtfile))."'/>"
		        
. "<input type='hidden' name='initialcrscode'  maxlength='15'  
  value='".htmlspecialchars(preg_replace('/^(.*?)_COURSE.*$/', "$1", $nxtfile))."'/>"

. "<input type='hidden' name='zipfile' value='".htmlspecialchars($nxtfile)."'/>" 
. "<input type='hidden' name='action' value='process'/>"