Banner Ad

    A    L    W    A    Y    S           D    E    S    I    R    E           T    O           L    E    A    R    N           S    O    M    E    T    H    I    N    G           U    S    E    F    U    L   

Technology and business

technology and business are becoming inextricably interwoven. I don't think anybody can talk meaningfully about one without the talking about the other

Sunday, September 1, 2013

Easy and fast way to add PayPal payment gateway to your website

following is paypal Buy now button java script code You need to add paypal-button.min.js   click here to download andadd as follows between your <head> tag  or add github URL https://raw.github.com/paypal/JavaScriptButtons/master/dist/paypal-button.min.js <script      data-callback="http://sep06.netne.net/online_portal/controller_b/post_ad/success"      data-tax="0"      data-shipping="0"      data-amount="5.5"      data-name="harsha"   ...

PHP codigniter ajax call to load dropdown when another dropdown changes

<select id="makes2" name="makes2" style="width:200px;" data-hint="" onchange="load_dropdown_content1($('#field2'), this.value)">                           <?php  $sql = mysql_query("SELECT distinct make FROM advertisements"); while ($row = mysql_fetch_array($sql)){ echo "<option value='".$row['make']."'>" . $row['make'] . "</option>"; } ?> </select> here my values are hard coded to load values from mysql databasewhen dropdown onchange() function...

How to define static javascript variable

<script type="text/javascript"> checkadid.count=0; checkadid.adid=""; function checkadid(checkbox) { checkadid.adid=checkadid.adid.concat(checkbox.value);     if (checkbox.checked)     {              } } </script> here my javascript static variable is checkadid.adid since javascripts are weakly type there is no hard and fast rules you need to define variable as above and i used this static variable access to following java script function function load_table(){ ...

Related Posts Plugin for WordPress, Blogger...

your comments