Go Back   CodingForums.com > :: Server side development > PHP

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 09-02-2009, 12:58 AM   PM User | #1
cowboysdude
New to the CF scene

 
Join Date: Sep 2009
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
cowboysdude is an unknown quantity at this point
Can anyone see what's wrong here?

This is what I have for my code... I load the page and check the html source and it's correct but it won't fire the overlay... suggestions??

Code:
<?php
$lines = file('modules/mod_test/files.txt', FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
foreach($lines as $line)
{
    list($ol, $pic, $vid, $title) = explode('-', $line);
	echo '<a href="#overlay" rel="#overlay'. $ol.'"><img src="/modules/mod_test/img/'. $pic .'" alt="picture here" /></a> '. $title.'&nbsp;<br />';
}
?>

<!-- overlays for videos -->

<?php
$lines = file('modules/mod_test/files.txt', FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
foreach($lines as $line)
{
    list($ol, $pic, $vid, $title) = explode('-', $line);
    echo '<div class="overlay" id="overlay' .$ol .'">';
    echo "<a href='$url/clips/$vid'>";
    echo "</div><br />";
	
} 
 ?>
 
 
<!-- overlays for videos -->
cowboysdude is offline   Reply With Quote
Old 09-02-2009, 03:00 AM   PM User | #2
Fumigator
UE Antagonizer


 
Fumigator's Avatar
 
Join Date: Dec 2005
Location: Utah, USA, Northwestern hemisphere, Earth, Solar System, Milky Way Galaxy, Alpha Quadrant
Posts: 7,686
Thanks: 42
Thanked 637 Times in 625 Posts
Fumigator is a glorious beacon of lightFumigator is a glorious beacon of lightFumigator is a glorious beacon of lightFumigator is a glorious beacon of lightFumigator is a glorious beacon of light
Oh sure, you can see the generated HTML but you won't let us see it..
__________________
Fumigator is offline   Reply With Quote
Old 09-02-2009, 03:00 AM   PM User | #3
tomws
Senior Coder

 
tomws's Avatar
 
Join Date: Nov 2007
Location: Arkansas
Posts: 2,644
Thanks: 29
Thanked 330 Times in 326 Posts
tomws will become famous soon enoughtomws will become famous soon enough
If the page source is correct, PHP has done its job. You'll need to look at your JavaScript.
__________________
Are you a Help Vampire?
tomws is offline   Reply With Quote
Old 09-03-2009, 12:24 PM   PM User | #4
cowboysdude
New to the CF scene

 
Join Date: Sep 2009
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
cowboysdude is an unknown quantity at this point
I will look at the java Thank you! Sorry for not posting the HTML..
cowboysdude is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 05:30 AM.


Advertisement
Log in to turn off these ads.