ReBeL Tech Posted October 9, 2007 Share Posted October 9, 2007 Hi. I am new to this forums but it looks promising. I am using OScommerce to build a website. Everything works but I want to add a flash file into php file. The code looks like this <?php /* $Id: column_left.php,v 1.15 2003/07/01 14:34:54 hpdl Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2003 osCommerce Released under the GNU General Public License */ if ((USE_CACHE == 'true') && empty($SID)) { echo tep_cache_categories_box(); } else { include(DIR_WS_BOXES . 'categories.php'); } if ((USE_CACHE == 'true') && empty($SID)) { echo tep_cache_manufacturers_box(); } else { include(DIR_WS_BOXES . 'manufacturers.php'); } require(DIR_WS_BOXES . 'whats_new.php'); require(DIR_WS_BOXES . 'search.php'); require(DIR_WS_BOXES . 'information.php'); ?> Now Ive tried in Dreamweaver to just add the file but it does not work. It just adds the image to the top of the rest of the boxes (for an example check http://www.sybaritic.co.za/store/index.php). The image just adds above the catergories. I want the image to be placed on the left of those boxes. Anyone have an idea? Quote Link to comment https://forums.phpfreaks.com/topic/72516-embedding-swf-into-php/ Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.