Satya - Instablogs
Apr 1 2007
Just for Information:On Linux system I was using Google analytics, but on Linux system due to flash, analytics was not coming correctly. When I installed stat counter then it given me correct statistics, I got relief that some people are visiting my...
Tags:
Tech News
Apr 1 2007
I am not electorate of UP, so I cannot say my vote goes to ???. Three parties are close to winning election: BSP (Mayawati), SP (Mulayam Singh) and BJP. According to a survey by an electronic media Bahujan Samaj Party and ruling Samajwadi Party will be...
Mar 30 2007
First of all I will suggest moving to Firefox browser. There you will get Javascript console(Firefox: Tools->JavaScript Console) which is very useful for Javascript debugging.Old IE style error message box will not give the correct line number and error...
Mar 26 2007
This is very common for us providing user list of choices and let them select their preferences from given choices. This kind of script is also needed in admin side for update and delete records.Here I am providing JavaScript for doing check all/...
Mar 25 2007
Please look at here first to understand this.Page::ajax_req.jsfunction GetXmlHttpObject(handler){ var objXMLHttp=null if (window.XMLHttpRequest) { objXMLHttp=new XMLHttpRequest() } else if (window.ActiveXObject) { objXMLHttp=new...
Mar 25 2007
Yes, cricket is a game of uncertainty. It is a good possibility that India will be out from super 8 league from World Cup 2007. You can judge the team, can understand pitch, can know the records of two teams taking part in match, but can you know and...
Mar 19 2007
Bob Woolmer died after shocking defeat of Pakistan from minnows Ireland that put them out of the World Cup 2007.This kind of pressure is also on Indian coach Greg Chappell. In India and Pakistan, Cricket is the only game people are serious. Others games...
Mar 17 2007
Validate email ID:function checkMail($mail) { if (empty($mail)) return false; if (!eregi(”^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$”, $mail)) { return false; } else { return true;...
Mar 17 2007
JavaScript call PHP scriptsDirectly you cannot do this. But, when you submit a form using JavaScript to a PHP page you can say JavaScript called PHP. This Java Script form submission has discussed at last.Here I am discussing different tricks.Hello...
Mar 12 2007
Coding Standards is one of the topics most programmers either do not come across or do not find useful. Some think it is not for me as I am new to coding.But in my opinion it is the most useful chapter programmers should learn as soon as programmers...