Categories
- about
- Adwords
- Android Application Development
- Artificial intelligence
- Auction Script
- Business & Marketing
- CRM Solution
- E Commerce
- Featured
- Fiverr clone
- General
- Groupon clone
- Headline
- iPhone Application Development
- Living Social
- mobile application
- Mobile Commerce
- Mobile Products
- ndot.in
- outsourcing
- Programming
- Search Engine Marketing
- Semantic web
- SEO Company
- SEO services
- Social Commerce
- Social CRM
- Social media
- Social Media Marketing
- Social networking
- Sports
- Uncategorized
- Web Development
- Yipit Clone
Tags
Add new tag AJAX android android application android application development api crawl css drupal error facebook Fiverr clone framework functionality Groupon Clone Groupon Clone Script HTML interoperability iPhone application development java script javascript joomla know3 mobile application MySQL ndot open source OWL php rdf Search engines Semantic web SEO Company SEO Service SEO services Social media Social Media Marketing Social networking tags triple DES twitter web 3.0 widgets XHTML Yipit Clone
Category Archives: Programming
Dynamically change the field type from text to password
Hi to all, I have given the code which is used to change the field type from text to password. In login page, we need to display “Enter the password” in password field, it should be visible and same time … Continue reading
Posted in Programming
Tagged javascript, login form, password field, php, text field
Leave a comment
Redirect one domain to another domain in htaccess file
Hi, RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} !unlimited.ndot.in$ [NC] RewriteRule ^(.*)$ http://unlimited.ndot.in/$1 [L,R=301] Here unlimited.ndot.in is my destination domain name.
Adding google+1 button to your websites
Hi, Google has just released the Google +1 button which webmasters can add to their site / blog and enable visitors to give a recommendation to Google and your friends about your site. Webmasters can get the +1 button code … Continue reading
mysql date_format() list
DATE_FORMAT() function formats the date by specifying a sequence of format strings. A string is composed of the percentage symbol ‘%’ followed by a formatting letter. These are some of the more common strings to use: Specifier Description %a Abbreviated … Continue reading
Mailer Error: SMTP Error: Could not connect to SMTP host.
Hi guys, I would like to share my experience about smtp mail configuration… I am trying to send mail in php through gmail smtp configuration… Its working well in some application. In same time getting this error in few application … Continue reading
check/uncheck the multiple checkboxes in php
<span>Select : </span> <a href=”javascript:request_all();” title=”All”>All</a> <a href=”javascript:request_none();” title=”None”>None</a> </p> //pending request all function request_all() { if(document.pending_request.pending_req_list.length==undefined) { document.pending_request.pending_req_list.checked=true; } for(var i=0; i < document.pending_request.pending_req_list.length; i++) { if(!document.pending_request.pending_req_list[i].checked) { document.pending_request.pending_req_list[i].checked=true; } } } //pending request none function request_none() { … Continue reading
paypal currency code for multiple country currency format
EUR for Euro USD for U.S. Dollar GBP for Pound Sterling CAD for Canadian Dollar JPY for Yen AUD for Australian Dollar NZD for New Zealand Dollar CHF for Swiss Franc HKD for Hong Kong Dollar SGD for Singapore Dollar … Continue reading
select the text box value in onclick
<script type=”text/javascript”> function SelectAll(id) { document.getElementById(id).focus(); document.getElementById(id).select(); } </script> <input id=”share_link” onclick=”SelectAll(‘share_link’);” type=”text” value=”text value” />
Lost connection to MySQL server at ‘reading initial communication packet’, system error: 113
Hi to all, While connecting DB in php, I am getting error called “Lost connection to MySQL server at ‘reading initial communication packet’, system error: 113″. What is the reason to get this error. Anybody to know about it. thanks … Continue reading
Posted in Programming
Tagged error, mysql_connect, mysql_connect error, php, php DB connection error
Leave a comment