Posts

Showing posts from September, 2014

Best Website Links

Forex Related Sites Link: *For Calculation: http://www.luckscout.com/leverage-margin-balance-equity-free-margin-and-margin-level-in-forex-trading/ TOP Wesite List:   http://biglistofwebsites.com/list-top-websites-on-slider   TAlly :  http://www.rtslink.com/TallyXMLTags.htm http://www.ncsmindia.com/chapter-10-displaying-information-from-tally/ Check your site contains malicious or not: http://sitecheck.sucuri.net Info about your site: http://builtwith.com/ SRS: http://www.microtoolsinc.com/Howsrs.php http://www.acommerce.asia/ http://www.srstravels.net/clients.php http://www.mgts.co.in/case_study_viatical_service_outsourcing.html http://techwhirl.com/writing-software-requirements-specifications/ http://www.jaysonjc.com/programming/how-to-write-a-software-requirements-specification-srs-document.html http://www.tricity.wsu.edu/~mckinnon/cpts322/cpts322-srs-v1.doc Theme · Admin: o http://www.daveismyname.com/free-bootstrap

PHP DATABASE LARGE ERROR

When database size is more than 2M then increase size from php.ini

Codeigniter Prevent Back

<div dir="ltr" style="text-align: left;" trbidi="on"> Put this code in each Controller<br /> <br /> public function __construct()<br /> <span class="Apple-tab-span" style="white-space: pre;"> </span>{<br /> <span class="Apple-tab-span" style="white-space: pre;"> </span>parent::__construct();<br /> <span class="Apple-tab-span" style="white-space: pre;"> </span>$this-&gt;output-&gt;set_header('Last-Modified:'.gmdate('D, d M Y H:i:s').'GMT');<br /> <span class="Apple-tab-span" style="white-space: pre;"> </span>$this-&gt;output-&gt;set_header('Cache-Control: no-store, no-cache, must-revalidate');<br /> <span class="Apple-tab-span" style="white-space: pre;"> </span>$this-&gt;output

AJAX CODE

<script language="javascript" type="text/javascript"> var actNo=""; function getXMLHTTP() { //fuction to return the xml http object  var xmlhttp;  if (window.XMLHttpRequest)     {// code for IE7+, Firefox, Chrome, Opera, Safari      xmlhttp=new XMLHttpRequest();     }  else    {// code for IE6, IE5     xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");      }    return xmlhttp; } var req = getXMLHTTP();  function getdetails(pay_type) {   var strURL="getwithdrawdetails.php?pay_type="+pay_type;     req.onreadystatechange = statechanged;     req.open("GET", strURL, true);   req.send(null);  }  function statechanged(){   if (req.readyState == 4) {    // only if "OK"    document.getElementById("withdrawdetails").innerHTML = req.responseText;   }  } </script>