PDA

View Full Version : Update Existing List with LONG list.


ArcticFox
01-01-2007, 04:27 AM
http://www.basestationzero.com/IPB2.0/

On the bottom of the forums I've a scrolling DIV with a list of alternative energy stocks, complete with onMouseOvers, links, small chart linked to large chart. I've 18 set up so far, but now I just found a new list:

http://www.renewableenergystocks.com/Companies/RenewableEnergy/Stock_List.asp


I'm wondering if there's any way to recreate the old small list with companies in the large list. I'm doing this all by hand and it's a REAL pain. I'm thinking I may have to design a page where I can just fill in the form with new information and have it post on a separate page all the HTML needed.

Would this be a simple form, or do I need JS or PHP involved? I don't even know where to start with this. :confused: Maybe a form is not the right way to go about this - I don't know...

Code for each row of three companies looks like this:

<!--// ########## LINE 1 ########## //-->
<table style="border:0px solid #ff0000; text-align:center; ">
<tr><td>
<a href="http://www.amelotholdings.com/" target="_blank" onmouseover="return overlib('<b>Company 1</b> some text here.', CENTER,ABOVE);" onmouseout="return nd();">Amelot Holdings, Inc.</a><br>(AMHD.PK)
</td><td>
<a href="http://www.pplweb.com/" target="_blank" onmouseover="return overlib('<b>Company 2</b> some other text here.', CENTER,ABOVE);" onmouseout="return nd();">Alcard Chemical Group</a><br>(AMHD.PK)
</td><td>
<a href="http://www.evergreensolar.com/" target="_blank" onmouseover="return overlib('<b>Company 3</b> some more text here.', CENTER,ABOVE);" onmouseout="return nd();">Evergreen Solar</a><br>(ESLR)
</td></tr><tr><td>
<a href="http://bigcharts.marketwatch.com/charts/big.chart?symb=AMHD"
onClick="window.open('http://bigcharts.marketwatch.com/charts/big.chart?symb=AMHD', 'amhd',
'status, width=600, height=365');
return false"><img src="http://ichart.finance.yahoo.com/t?s=AMHD.PK" style="border:1px solid #000000;"></a>&nbsp;
</td><td>
<a href="http://bigcharts.marketwatch.com/charts/big.chart?symb=ACMG"
onClick="window.open('http://bigcharts.marketwatch.com/charts/big.chart?symb=ACMG', 'acmg',
'status, width=600, height=365');
return false"><img src="http://ichart.yahoo.com/t?s=ACMG.PK" style="border:1px solid #000000;"></a>&nbsp;
</td><td>
<a href="http://bigcharts.marketwatch.com/charts/big.chart?symb=eslr"
onClick="window.open('http://bigcharts.marketwatch.com/charts/big.chart?symb=eslr', 'eslr',
'status, width=600, height=365');
return false"><img src="http://ichart.yahoo.com/t?s=eslr" style="border:1px solid #000000;"></a>&nbsp;
</td></tr>
</table>
<!--// ########## LINE 1 END ########## //-->