I have the code below that declares info from my query as a variable, what I'd like to do is add regular text with it.
$mytext = $query_rs->Fields("my_text");
So if the field my_text was 'This is my text' and I wanted to add regular text to the variable so when I used echo to display it later it would show up 'Story: This is my text' so that Story: is always added to $mytext.