Jump to content

DISAPPEARING CODE!!!!!


ludaluda

Recommended Posts

Can someone help me please....

Look on www.acebeatz.com in media section.

There's pictures with links, simple coding, php page.

There's suppose to be another album cover of 150px by 150 px right of the black one.

The picture isnt appearing at all. more than that, the code is not even appearing when i do view source in IE for example.

But the coding is there in the php page, and its the SAME EXACT line code except for links and img source for all other images you can see in that pages, say Pictures of Acebeatz, and the black cover album.


WHAT IS GOING ON, i never saw disappearing code of my life.

help me plz!!!!

will
Link to comment
Share on other sites

Ewwww rap... Anyways your right... In the media section its
[code=php:0]
<a target="_blank" href="media/ATTWTB_full.zip">
<img border="1" src="images/attwtb.png" width="150" height="150"></a>&nbsp;
<a target="_blank" href="http://www.sendspace.com/file/vqdtnt.zip">
<img border="1" src="images/cover.png" width="150" height="150"></a>
[/code]

So its definatly a problem in the php script... If you post the part of the php script where it out puts the image tags someone might be able to help...
Link to comment
Share on other sites

HERE IS THE FULL CODE (i made the web site with oscommerce)


<?php
/*
  $Id: shipping.php,v 1.4 2002/11/19 01:48:08 dgw_ Exp $

  osCommerce, Open Source E-Commerce Solutions
  http://www.oscommerce.com

  Copyright (c) 2002 osCommerce

  Released under the GNU General Public License
*/

define('NAVBAR_TITLE', 'Media');
define('HEADING_TITLE', 'Media & Download');

define('TEXT_INFORMATION', '

<p>Full Albums</p>
<a target="_blank" href="media/ATTWTB_full.zip">
<img border="1" src="images/attwtb.png" width="150" height="150"></a>&nbsp;
<a target="_blank" href="http://www.sendspace.com/file/vqdtnt.zip">
<img border="1" src="images/cover.png" width="150" height="150"></a>
<p>Picture Of Acebeatz</p>
<a target="_blank" href="images/acebeatz_3.png">
<img border="1" src="images/acebeatz_4.png" width="50" height="75"></a>&nbsp;
<a target="_blank" href="images/acebeatz_2.png">
<img border="1" src="images/acebeatz_1.png" width="50" height="69"></a>&nbsp;
<a target="_blank" href="images/acebeatz_6.png">
<img border="1" src="images/acebeatz_5.png" width="50" height="75"></a>&nbsp;
<a target="_blank" href="images/acebeatz_9.png">
<img border="1" src="images/acebeatz_11.png" width="50" height="70"></a>&nbsp;
<a target="_blank" href="images/acebeatz_8.png">
<img border="1" src="images/acebeatz_7.png" width="50" height="79"></a>');

?>


HELP ME LOL
Link to comment
Share on other sites

[code=php:0]
<p>Full Albums</p>
<a target="_blank" href="media/ATTWTB_full.zip">
<img border="1" src="images/attwtb.png" width="150" height="150">[/url]&nbsp;
<a target="_blank" href="http://www.sendspace.com/file/vqdtnt.zip">
<img border="1" src="images/cover.png" width="150" height="150">[/url]
<p>Picture Of Acebeatz</p>
[/code]
Count the image tags... Theres only 2... Thats your problem
Link to comment
Share on other sites

There are only 2 IMG tags. Meaning you are only calling for 2 IMG's.

[code]
<?php
/*
  $Id: shipping.php,v 1.4 2002/11/19 01:48:08 dgw_ Exp $

  osCommerce, Open Source E-Commerce Solutions
  http://www.oscommerce.com

  Copyright (c) 2002 osCommerce

  Released under the GNU General Public License
*/

define('NAVBAR_TITLE', 'Media');
define('HEADING_TITLE', 'Media & Download');

define('TEXT_INFORMATION', '

<p>Full Albums</p>
<a target="_blank" href="media/ATTWTB_full.zip">
<img border="1" src="images/attwtb.png" width="150" height="150">[/url]&nbsp;
<a target="_blank" href="http://www.sendspace.com/file/vqdtnt.zip">
<img border="1" src="images/cover.png" width="150" height="150">[/url]&nbsp;
<a target="_blank" href="http://www.sendspace.com/file/vqdtnt.zip"> //Third Image
<img border="1" src="images/cover.png" width="150" height="150">[/url] //Third Image
<p>Picture Of Acebeatz</p>
<a target="_blank" href="images/acebeatz_3.png">
<img border="1" src="images/acebeatz_4.png" width="50" height="75">[/url]&nbsp;
<a target="_blank" href="images/acebeatz_2.png">
<img border="1" src="images/acebeatz_1.png" width="50" height="69">[/url]&nbsp;
<a target="_blank" href="images/acebeatz_6.png">
<img border="1" src="images/acebeatz_5.png" width="50" height="75">[/url]&nbsp;
<a target="_blank" href="images/acebeatz_9.png">
<img border="1" src="images/acebeatz_11.png" width="50" height="70">[/url]&nbsp;
<a target="_blank" href="images/acebeatz_8.png">
<img border="1" src="images/acebeatz_7.png" width="50" height="79">[/url]');

?>
[/code]

I bet if you were to try that, it would show you three images. Although one would be a duplicate, I am just trying to show you what I mean. And what Corbin said.
Link to comment
Share on other sites

i tried wut you said already, and it didnt changed anything.

also im calling one image each time i want an image.

i dont understand what you mean im claling only two images.

i got two images i want to make appears, cover.png and attwtb.png....

look on www.acebeatz.com in media section.

if im not doing something right, can one of you correct my code so i could copy it???
Link to comment
Share on other sites

there is one image missing, ther should be one image at the right of the little 150 px black cover, one image in red written Acebeatz remixes on it red and black faded.

but it doesnt appear.

when im in IE and i do view source, i cannot see the line of the code of that exact image, crazy huh?
Link to comment
Share on other sites

im assuming you copied and pasted
[code=php:0]
<?php
/*
  $Id: shipping.php,v 1.4 2002/11/19 01:48:08 dgw_ Exp $

  osCommerce, Open Source E-Commerce Solutions
  http://www.oscommerce.com

  Copyright (c) 2002 osCommerce

  Released under the GNU General Public License
*/

define('NAVBAR_TITLE', 'Media');
define('HEADING_TITLE', 'Media & Download');

define('TEXT_INFORMATION', '

<p>Full Albums</p>
<a target="_blank" href="media/ATTWTB_full.zip">
<img border="1" src="images/attwtb.png" width="150" height="150">[/url]&nbsp;
<a target="_blank" href="http://www.sendspace.com/file/vqdtnt.zip">
<img border="1" src="images/cover.png" width="150" height="150">[/url]&nbsp;
<a target="_blank" href="http://www.sendspace.com/file/vqdtnt.zip"> //Third Image
<img border="1" src="images/cover.png" width="150" height="150">[/url] //Third Image
<p>Picture Of Acebeatz</p>
<a target="_blank" href="images/acebeatz_3.png">
<img border="1" src="images/acebeatz_4.png" width="50" height="75">[/url]&nbsp;
<a target="_blank" href="images/acebeatz_2.png">
<img border="1" src="images/acebeatz_1.png" width="50" height="69">[/url]&nbsp;
<a target="_blank" href="images/acebeatz_6.png">
<img border="1" src="images/acebeatz_5.png" width="50" height="75">[/url]&nbsp;
<a target="_blank" href="images/acebeatz_9.png">
<img border="1" src="images/acebeatz_11.png" width="50" height="70">[/url]&nbsp;
<a target="_blank" href="images/acebeatz_8.png">
<img border="1" src="images/acebeatz_7.png" width="50" height="79">[/url]');

?>
[/code]
exactly?

I think the forums just parsed [code]</a>[/code] as the [code][/url][/code]

try
[code=php:0]
<?php
/*
  $Id: shipping.php,v 1.4 2002/11/19 01:48:08 dgw_ Exp $

  osCommerce, Open Source E-Commerce Solutions
  http://www.oscommerce.com

  Copyright (c) 2002 osCommerce

  Released under the GNU General Public License
*/

define('NAVBAR_TITLE', 'Media');
define('HEADING_TITLE', 'Media & Download');

define('TEXT_INFORMATION', '

<p>Full Albums</p>
<a target="_blank" href="media/ATTWTB_full.zip">
<img border="1" src="images/attwtb.png" width="150" height="150"></a>&nbsp;
<a target="_blank" href="http://www.sendspace.com/file/vqdtnt.zip">
<img border="1" src="images/cover.png" width="150" height="150"></a>&nbsp;
<a target="_blank" href="http://www.sendspace.com/file/vqdtnt.zip"> //Third Image
<img border="1" src="images/cover.png" width="150" height="150"></a> //Third Image
<p>Picture Of Acebeatz</p>
<a target="_blank" href="images/acebeatz_3.png">
<img border="1" src="images/acebeatz_4.png" width="50" height="75"></a>&nbsp;
<a target="_blank" href="images/acebeatz_2.png">
<img border="1" src="images/acebeatz_1.png" width="50" height="69"></a>&nbsp;
<a target="_blank" href="images/acebeatz_6.png">
<img border="1" src="images/acebeatz_5.png" width="50" height="75"></a>&nbsp;
<a target="_blank" href="images/acebeatz_9.png">
<img border="1" src="images/acebeatz_11.png" width="50" height="70"></a>&nbsp;
<a target="_blank" href="images/acebeatz_8.png">
<img border="1" src="images/acebeatz_7.png" width="50" height="79"></a>');

?>
[/code]
Link to comment
Share on other sites

i tried but it doesnt change anything....

what is bizzare is that i have friends that see the image and follow the link to download the zip pack...

on ym coomputer, it worked for a few time, but then the image doestn appear anymnore.

do you see it corbin, on your computer?

what is bizzare, is that both IE and Firefox do me the same problem.

why only one image would disappear.
Link to comment
Share on other sites

yeah exaclty i can clearly see my flash.

its only a small png image with an hyperlink that i cant see.

crazy.

i got two friends who see it and downloaded the zip file.

i do website since two years and im on flahs and php only since december so im not expert but its so simple, thats why i dont understand!!lol.
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.