selectPicture(); $pictureSize = getimagesize($picturePath.'/'.$objQuestion->selectPicture()); $pictureWidth = $pictureSize[0]; $pictureHeight = $pictureSize[1]; $courseLang = $_course['language']; $courseCode = $_course['sysCode']; $coursePath = $_course['path']; // Query db for answers $sql = "SELECT id, answer, hotspot_coordinates, hotspot_type FROM `$TBL_ANSWERS` WHERE question_id = '$questionId' ORDER BY id"; $result = api_sql_query($sql,__FILE__,__LINE__); // Init $output = "hotspot_lang=$courseLang&hotspot_image=$pictureName&hotspot_image_width=$pictureWidth&hotspot_image_height=$pictureHeight&courseCode=$coursePath"; $i = 0; while ($hotspot = mysql_fetch_array($result)) { $output .= "&hotspot_".$hotspot['id']."=true"; // Square or rectancle if ($hotspot['hotspot_type'] == 'square' ) { $output .= "&hotspot_".$hotspot['id']."_type=square"; } // Circle or ovale if ($hotspot['hotspot_type'] == 'circle') { $output .= "&hotspot_".$hotspot['id']."_type=circle"; } // Polygon if ($hotspot['hotspot_type'] == 'poly') { $output .= "&hotspot_".$hotspot['id']."_type=poly"; } $output .= "&hotspot_".$hotspot['id']."_coord=".$hotspot['hotspot_coordinates'].""; $i++; } // Generate empty $i++; for ($i; $i <= 12; $i++) { $output .= "&hotspot_".$i."=false"; } // set vars $questionId = $_GET['modifyAnswers']; $courseCode = $_course['sysCode']; // Get clicks foreach ($_SESSION['exerciseResultCoordinates'][$questionId] as $coordinate) { $output2 .= $coordinate."|"; } $output .= "&p_hotspot_answers=".substr($output2,0,-1)."&done=done"; $explode = explode('&', $output); echo $output; ?>