jack_is_here Posted October 26, 2010 Share Posted October 26, 2010 Hi, I'm not really a php user however I'm having a dabble. I'm trying to display an include file such as <?php include("sponsor.php"); ?> However I'm trying to make it a bit more advanced by selecting the month so what I'm after doing is displaying <?php include("sponsor-october.php"); ?> The idea being that this updates by itself, I understand that <?php echo date("F"); ?> will display the month, it's just combining the two where I get lost, any help would be welcome ta. Link to comment https://forums.phpfreaks.com/topic/216873-php-include/ Share on other sites More sharing options...
rwwd Posted October 26, 2010 Share Posted October 26, 2010 <?php include("sponsor-".date("F").".php");?> I think that's the one your after.. Rw Link to comment https://forums.phpfreaks.com/topic/216873-php-include/#findComment-1126622 Share on other sites More sharing options...
jack_is_here Posted October 26, 2010 Author Share Posted October 26, 2010 perfect,t thanks for your help Link to comment https://forums.phpfreaks.com/topic/216873-php-include/#findComment-1126636 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.