Mysql, union two tables in one.

INSERT INTO words SELECT 'id+2000',eng,rus,freq,'show',add_time FROM l6

SELECT a.id, b.id, a.eng
FROM words a, words b
WHERE a.eng = b.eng
AND a.id <> b.id

Adding style attribute to an element


http://www.codingforums.com/showthread.php?t=57721




document.getElementById('div1').className="myclass";
where myclass is defined in CSS as:
.myclass {width:50px; height:200px; background: #e0e0e0;}


document.getElementById('div1').style.cssText = 'width:50px; height:200px; background: #e0e0e0;';