Ben şirket için bir anket sistemi üzerinde çalışıyorum ve ankete katılmak için iki yol vardır ki ben bunu sisteme kurulum var.
1) Yeni Anket Taker önceden hiçbir bilgisi
2) Anket zaten gönderildi ve bir oturum oluşturuldu.
In case one I would like my URL to look like:
mydomain.com/SurveySystem/index.php/survey/$surveyID
($ SurveyID almak için anket bir tamsayı olmak)
The second case would where we create a link with for the test taker. I would like the URL to look like this:
mydomain.com/SurveySystem/index.php/survey/$surveySessionID/$guestID
Benim Anket sınıfında ben aşağıdaki gibi kurulum var:
fonksiyon indeksi () {
$segments = $this->uri->total_segments();
if($segments == 1){
echo "no surveyID set";
return;
}
if($segments == 2){
$this->take_survey($this->uri->segment(2));
}
if($segments == 3){
$this->survey_session($this->uri->segment(3), $this->uri->segment(4));
}
}
When no information is passed the it echos just fine. But if I try to put a integer where the surveyID is it thinks i'm loading up a method in the controller.
Yardım için teşekkür ederiz!