TalkPHP

TalkPHP (http://www.talkphp.com/forums.php)
-   Absolute Beginners (http://www.talkphp.com/absolute-beginners/)
-   -   need help with a script I want to do (http://www.talkphp.com/absolute-beginners/2977-need-help-script-i-want-do.html)

wizard0522 06-18-2008 04:43 PM

need help with a script I want to do
 
Hello,

I am doing an oscommerce shopping cart and in the product info page I would like to include an html link for some product ids only, My question is how would I do this, I know how to do your basic <? include 'whatever' ; ?> but I would like for that includes only to show up on certain id's not on all, how do I exclude the id's I do not want this to show on?

Please if anyone can be so kind to help me out with this,

Thanks in advance

Wildhoney 06-18-2008 09:40 PM

Include version:

php Code:
$iMyId = 1;
$aInclude = array(5, 15, 20, 25);

if (in_array($iMyId, $aInclude))
{
    include_once 'myFile.html';
}

Exclude version:

php Code:
$iMyId = 1;
$aExclude = array(5, 15, 20, 25);

if (!in_array($iMyId, $aExclude))
{
    include_once 'myFile.html';
}


All times are GMT. The time now is 02:40 PM.

Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0