Sorry for asking what is probably a very simple thing for most of you but I can't wrap my brain around it.
I want to collect variables through the url, like mydomain.com/script.php?category=Something&subcategory=Somethingelse
then have it echo in the message1 and message2 fields so that they change depending on the url queries passed..
$message1 = 'Something' ;
$message1 = 'Somethingelse' ; |
This what I have so far
include_once('tbs_class.php');
$TBS = new clsTinyButStrong ;
$TBS->LoadTemplate('template.html') ;
$message1 = 'Something' ;
$message2 = 'Somethingelse' ;
$TBS->Show() ;
|
I have the tags in the html correct and they will replace with whatever I manually type in the two message fields but I would like to make it dynamic depending on the link clicked and variables passed.
Thank you if you can help