Archive for April 23rd, 2008

subquery - join using in mysql

Wednesday, April 23rd, 2008

SELECT sports_name
FROM sports
WHERE id
IN (

SELECT sports_id
FROM sports_key
WHERE user_id =1
)

In this query we have selected field(sports_id) from the table(sports_key) and also we checed the field(user_id) This process has been done in subquery. Then finally, we have selected field (sports_name) from the table (sports_key) according to receiving field (id) values from subquery.

Posted by

window open not working in Internet Explorer (javascript)

Wednesday, April 23rd, 2008

 <a href=”contactus.php?act=contactus” onclick=”javascript:window.open(’contactus.php?act=contactus’ ,’contactus‘,’width=564PX,height=600PX,scrollbars=yes,top=0,left=0′); return false;”>
Contact Us</a>

in the above code when the highlighted window name is given without space..

But by mistake if u give a space in between the name like “contact us” then this will not work in Internet Explorer  and the same will work in Mozilla Firefox

Posted by Suresh B