How can I Embedding artist cover & Now playing text?

I have this done so fare hows this look?

<meta http-equiv="refresh" content="60">
<?php $section = file_get_contents('nowplaying.txt'); //This assumes you have nowplaying.txt in root
echo $section;
echo '<center><img src="artwork.png" height="150" width="150" border="0" alt="Album Cover" title="Album ArtWork"></center>';//This assumes you have artwork.png in root
//actual coding written by Todd at www.spfldmo.com - please leave coders name in script
?>
 
DavenLC said:
I think for your page, swap the artwork and song title

Code:
echo '<img src="artwork.png" height="150" width="150" border="0" alt="Album Cover" title="Album ArtWork">';
echo"
";
<?php $section = file_get_contents('nowplaying.txt');
echo $section;

Well I wanted the text above the layer and the image above that I tried what you suggested bit its not working only crashing?
 
here is what i have since you said to update.

<meta http-equiv="refresh" content="60">
echo '<img src="artwork.png" height="150" width="150" border="0" alt="Album Cover" title="Album ArtWork">';
<?php $section = file_get_contents('nowplaying.txt');
echo $section;
//actual coding written by Todd at www.spfldmo.com - please leave coders name in script
?>

 
Code:
<?php $section = file_get_contents('nowplaying.txt');
echo '<img src="artwork.png" height="150" width="150" border="0" alt="Album Cover" title="Album ArtWork">';
echo"
";
echo $section;
 
DavenLC said:
Code:
<?php $section = file_get_contents('nowplaying.txt');
echo"
";
echo '<img src="artwork.png" height="150" width="150" border="0" alt="Album Cover" title="Album ArtWork">';
echo"
";
echo $section;

I gave you a shout out man so anyone listening cane check out your site.
 
DavenLC said:
Code:
<?php $section = file_get_contents('nowplaying.txt');
echo '<img src="artwork.png" height="150" width="150" border="0" alt="Album Cover" title="Album ArtWork">';
echo"
";
echo $section;

Changed it just need to center my image and i am good and find out what is causing the space.
 
<div> and
tags add spaces...  but..  it looks great! if you want pict centered add the <center></center> or align="center"
 
Oh, I see what you're trying to do...  It may not be the code we're working on but the Template you are putting it in.  I see that Nowplaying Song and NExt Song are together.  In RadioBoss, uncheck the "Show next song"
 
DavenLC said:
<div> and
tags add spaces...  but..  it looks great! if you want pict centered add the <center></center> or align="center"

What yo think now? Have a look and tell em your thoughts space between image and font or no?
 
DavenLC said:
I like it as-is...
With a space or none? now it has a space lol by the way I thank you so much for everything thanks I just need to doe a schedule now.
 
DavenLC said:
the code

Code:
echo"
";


but, from the looks of your web page now, you got it!

I learn as I go thanks a lot I also try my best what was that weather link i never got it i was afk.
 
google weather channel podcast..  look for your city.  It's usually updated 3 times a day and they're very accurate.
If you want to hear what they sound like and how I have it programmed, tune in to my webpage and listen around the top of the hour.  News is played at 7a, 12p and 6p  Weather and Time on the hour.

I use Juice Podcast downloader on a different PC and with batch files and Syncback (free) I get the correct podcast transferred to a folder on my radioboss pc

example command line batch file:

Code:
c:
cd\podcasts
cd YOURCITY
ren YOURCITY.mp3 Weather.mp3
copy Weather.mp3 c:\PODCAST_DATA /v
del Weather.mp3
 
DavenLC said:
google weather channel podcast..  look for your city.  It's usually updated 3 times a day and they're very accurate.

I use Juice Podcast downloader on a different PC and with batch files and Syncback (free) I get the correct podcast transferred to a folder on my radioboss pc

example command line batch file:

Code:
c:
echo.
echo. Weather Processing...
echo.
cd\podcasts
cd housto~2
ren houston.mp3 Weather.mp3
copy Weather.mp3 c:\PODCAST_DATA /v
del Weather.mp3 
echo.
echo. Weather Processing complete...
echo.

I see code, but don't understand lol we go from a podcast of whether to code like wtf lol I don't understand.
 
DavenLC said:
Yup..  thats alll different now.  Command Line Batch file writing is different than PHP, Javascript and html.
It's DOS!  http://www.wikihow.com/Write-a-Batch-File

;D 8)

the weather link you gave em wow i cant even search Windsor, Ontario, Canada i get this error wtf? Can you explain hat your batch does?

{"class":"error",
"type":4000,
"cat":"commands",
"text":"The command 'Invalid command' is invalid"}
 
Back
Top