Hallo zusammen,
ich habe ein Problem auf der Webseite www.dh-parts.de , ich möchte auf der Rechten Seite in dem Kasten "Info" folgenden Link einbinden, der automatisch geladen wird.
Link:
<script src="http://www.dh-parts.de/cgi-bin/Xandra/Xandra.cgi?bg=FFFFFF&format=standard" type="text/javascript"></script>
Gibt es ein Möglichkeit diesen Link über PHP aufzurufen?
Über HTML lässt sich der link ohne Probleme einbinden.
----------
<html>
<head>
<title></title>
</head>
<body>
<script src="http://www.dh-parts.de/cgi-bin/Xandra/Xandra.cgi?bg=FFFFFF&format=standard" type="text/javascript"></script>
</body>
</html>
----------------------------------
So sieht der Quelltext aus, in dem ich denn Link aufrufen will.
<?php
/*
$Id: information.php,v 1.6 2003/02/10 22:31:00 hpdl Exp $
osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com
Copyright (c) 2003 osCommerce
Released under the GNU General Public License
*/
?>
<!-- neueBoxAnfang //-->
<tr>
<td>
<?php
$info_box_contents = array();
$info_box_contents[] = array('text' => BOX_HEADING_NEUE_BOX);
new infoBoxHeading($info_box_contents, false, false);
$info_box_contents = array();
$info_box_contents[] = array('text' => '<a href="' . tep_href_link(FILENAME_Link5) . '">' . BOX_NEUEBOX_LINK5 . '</a>');
new infoBox($info_box_contents);
?>
</td>
</tr>
<!-- neueBox_eof //-->
Danke für Hilfe.
Gruß
Mikl
ich habe ein Problem auf der Webseite www.dh-parts.de , ich möchte auf der Rechten Seite in dem Kasten "Info" folgenden Link einbinden, der automatisch geladen wird.
Link:
<script src="http://www.dh-parts.de/cgi-bin/Xandra/Xandra.cgi?bg=FFFFFF&format=standard" type="text/javascript"></script>
Gibt es ein Möglichkeit diesen Link über PHP aufzurufen?
Über HTML lässt sich der link ohne Probleme einbinden.
----------
<html>
<head>
<title></title>
</head>
<body>
<script src="http://www.dh-parts.de/cgi-bin/Xandra/Xandra.cgi?bg=FFFFFF&format=standard" type="text/javascript"></script>
</body>
</html>
----------------------------------
So sieht der Quelltext aus, in dem ich denn Link aufrufen will.
<?php
/*
$Id: information.php,v 1.6 2003/02/10 22:31:00 hpdl Exp $
osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com
Copyright (c) 2003 osCommerce
Released under the GNU General Public License
*/
?>
<!-- neueBoxAnfang //-->
<tr>
<td>
<?php
$info_box_contents = array();
$info_box_contents[] = array('text' => BOX_HEADING_NEUE_BOX);
new infoBoxHeading($info_box_contents, false, false);
$info_box_contents = array();
$info_box_contents[] = array('text' => '<a href="' . tep_href_link(FILENAME_Link5) . '">' . BOX_NEUEBOX_LINK5 . '</a>');
new infoBox($info_box_contents);
?>
</td>
</tr>
<!-- neueBox_eof //-->
Danke für Hilfe.
Gruß
Mikl
Kommentar