Ok im gonna try to explain this as simple as i can,
im trying to make this little fun (mini)game on a website where everytime you browse across the site a little event happens,
that works fine all the data i request from MySQL gets put on the site,
one part of the event is the whole slab of text (something like: "went fishing but did not catch anything")
this text shows up but my idea for it was to have a variable ($name) inside the text (so the text allong with the variable will be requested from MySQL) and before the event triggers define $name as $_SESSION[name].
so the text inside the event can be personalised (something like: "$name went fishing but did not catch anything")
now my problem is when i call the data from MySQL it happily shows the text but the variable is still shown as "$name"
is it because the text is stored as "TEXT" in MySQL?
or because its simply not posible to call PHP variables from MySQL?
or maybe im overlooking something,
i could simply use "you" instead of the names but that is my last resort in this case.
thanks for your help in advance.