Mickie D
03-23-2003, 06:52 PM
i am making my own little programme for my members
lets start from the start:
my members would like a page where they could put in a location and on the other page it shows good places around that area...
this is how my code looks so far
<?php
include("global.php");
eval("dooutput(\"".gettemplate("places")."\");");
///// START PLACES CODE /////
if ($Your_Town == "London") {
$GoodSpot = "Bagleys night club";
}
///// END PLACES CODE /////
?>
this is all called from a "post" command and a text box on the page b4 this, so if they put london i want it just to say bagleys
i know if i was not using the forums templates i could put
print ="bagleys";
and just have a normal php page ... but i really like it intergrated into my forums, please help :)
can someone tell me how to get it to print from the templates $goodspot
i have put $goodspot in the template for this page but it wont get it :(
lets start from the start:
my members would like a page where they could put in a location and on the other page it shows good places around that area...
this is how my code looks so far
<?php
include("global.php");
eval("dooutput(\"".gettemplate("places")."\");");
///// START PLACES CODE /////
if ($Your_Town == "London") {
$GoodSpot = "Bagleys night club";
}
///// END PLACES CODE /////
?>
this is all called from a "post" command and a text box on the page b4 this, so if they put london i want it just to say bagleys
i know if i was not using the forums templates i could put
print ="bagleys";
and just have a normal php page ... but i really like it intergrated into my forums, please help :)
can someone tell me how to get it to print from the templates $goodspot
i have put $goodspot in the template for this page but it wont get it :(