|
|
|
|
|
|
|
|
|
|
| 3. Course and Employment Details |
|
|
|
| Participant Declaration & Privacy Statement |
- I have read the Participant/Client Information Handbook available online; I understand the roles and responsibilities as the participant, including the pathways and options available to me for training and assessment.
- I hereby agree to abide by the RTO policies and procedures relating to fees, charges and regulations of the organisation.
- I declare that the information supplied on this form is correct and complete.
- I agree that personal information and records (this may include written, verbal, photographic and other formats) collected by the Registered Training Organisation (RTO) may be:
- Used by the RTO for research, statistical analysis, program evaluation and internal management purposes.
- Used by government departments for audit, research, statistical analysis, program evaluation.
- Used for promotional and commercial purposes.
- I understand that my personal information will only be disclosed to other third parties with the appropriate legal documents or agreement/ permission in writing by myself.
|
| |
| |
| I have read and understood the terms and conditions set out above. |
|
Security Code: *
Just to further protect your information by making sure you are not a robot, please complete the following before sending. |
// create a 100*30 image
//$im = imagecreate(88, 31);
$im = imagecreate(200, 65);
// random colored background and text
//$bg = imagecolorallocate($im, rand(0,255) , rand(0,255), rand(0,255));
$bg = imagecolorallocate($im, 255 , 255, rand(0,255));
$textcolor = imagecolorallocate($im, 0, 0, rand(0,255));
// write the random 4 digits number at a random locaton (x= 0-20, y=0-20),
$random=rand(1000,9999);
//imagestring($im, rand(1,8), rand(0,20), rand(0,20), $random , $textcolor);
imagestring($im, 25, 25, 25, $random , $textcolor);
// write the image to a temporary file , in this case it is 777 chmoded tmp folder in same directory
// could be a generic /tmp folder
$filenametemp="tmp/gif".time().".gif";
ImageGIF($im, $filenametemp);
$ImageData = file_get_contents($filenametemp);
$ImageDataEnc = base64_encode($ImageData);
unlink($filenametemp); // delete the file
?>
|
|
|
|
|
|
|
|
|
|