Jump to content

embedding .swf into .php


ReBeL Tech

Recommended Posts

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?

Link to comment
https://forums.phpfreaks.com/topic/72516-embedding-swf-into-php/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.