I have got an awful problem. The Class that I created, is working, but I want to do more with this. In the SERVER_DESCRIPTION I want to have multiple items for my website, like the member_id, name of de DJ and if it is a DJ or a Show for the kind of banner.
SERVER_DESCRIPTION is set on "Name=DJName,ID=1,Kind=DJ". But I can not figure out a way to get the values extruded of the SERVER_DESCRIPTION.
Can anyone help me with this one?
function getKind() {
return($this->_values[$this->_indexes["SERVER_DESCRIPTION"][0]]["value"]);
}
function getName() {
return($this->_values[$this->_indexes["SERVER_DESCRIPTION"][0]]["value"]);
}
function getID() {
return($this->_values[$this->_indexes["SERVER_DESCRIPTION"][0]]["value"]);
}
Question
ShadowBooth
Hello There!
I have got an awful problem. The Class that I created, is working, but I want to do more with this. In the SERVER_DESCRIPTION I want to have multiple items for my website, like the member_id, name of de DJ and if it is a DJ or a Show for the kind of banner.
SERVER_DESCRIPTION is set on "Name=DJName,ID=1,Kind=DJ". But I can not figure out a way to get the values extruded of the SERVER_DESCRIPTION.
Can anyone help me with this one?
function getKind() { return($this->_values[$this->_indexes["SERVER_DESCRIPTION"][0]]["value"]); } function getName() { return($this->_values[$this->_indexes["SERVER_DESCRIPTION"][0]]["value"]); } function getID() { return($this->_values[$this->_indexes["SERVER_DESCRIPTION"][0]]["value"]); }Link to comment
Share on other sites
2 answers to this question
Recommended Posts