-
Categories
- about
- Adwords
- Android Application Development
- Artificial intelligence
- Auction Script
- Auction Software
- BlackBerry Application Development
- BlackBerry application development
- Business
- Business & Marketing
- Celebration
- Computer
- crm software
- CRM Solution
- E Commerce
- Employee Collaboration
- ERP Solutions
- Featured
- Fiverr clone
- General
- Groupon clone
- Headline
- HTML5 Development
- Internet Marketing
- iPhone Application Development
- Living Social
- Marketing
- mobile app marketing
- mobile application
- mobile application development
- mobile apps
- Mobile Commerce
- Mobile Computing
- Mobile Computing
- Mobile Products
- Mobile Solutions
- Mobile Website
- mobile website development
- ndot.in
- outsourcing
- Patient Appointment Scheduler
- Programming
- Search Engine Marketing
- Semantic web
- SEO Company
- SEO services
- SmartOffer
- Social Commerce
- Social CRM
- Social media
- Social Media Marketing
- Social networking
- Sports
- Uncategorized
- web design and development
- Web Development
- Yipit Clone
Tags
Add new tag AJAX android android application development api Auction Script blackberry application development crawl CRM Software css e commerce facebook functionality Groupon Clone Groupon Clone Script HTML iPhone application development iphone apps javascript joomla know3 mobile app development mobile application mobile application development mobile apps mobile commerce mobile commerce application mobile website MySQL ndot php rdf Search engines Semantic web SEO Company SEO Service Social Commerce Social media Social Media Marketing Social networking tags twitter widgets XHTML Yipit Clone
Tag Archives: php
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
- October 14, 2012 |
- 0 Comments
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.
- October 14, 2012 |
- 0 Comments
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
- October 14, 2012 |
- 0 Comments
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
- October 14, 2012 |
- 0 Comments
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
- October 14, 2012 |
- 0 Comments
mysql_error() function in php
Use of mysql_error() in php <?php $link = mysql_connect(“localhost”, ”mysql_user”, ”mysql_password”); mysql_select_db(“nonexistentdb”, $link); echo mysql_errno($link) . ”: ” . mysql_error($link). ”\n”; mysql_select_db(“kossu”, $link); mysql_query(“SELECT * FROM nonexistenttable”, $link); echo mysql_errno($link) . ”: ” . mysql_error($link) . ”\n”; ?>
- October 14, 2012 |
- 0 Comments
Best php image uploading script
$result = mysql_query ($query,$dbc); $lastId = $dealer_id; //upload the logo file if(is_uploaded_file ($_FILES['logo']['tmp_name'])) { move_uploaded_file($_FILES['logo']['tmp_name'],$IMG_PATH.”/uptemp/”.$lastId.”_”.$image); } //normal size image $widthadjust = 300; $heightadjust = 160; $add = “uptemp/”.$lastId.”_”.$image; $ext = explode(‘.’,$lastId.”_”.$image); if($ext[1] == “jpg” || $ext[1] == “jpeg”) { $im … Continue reading
- October 14, 2012 |
- 0 Comments
Learning social media APIs with PHP, MySQL & Javascripts
All social media sites including facebook, twiiter, linkedin, buzz & wordpress are providing APIs using XML, REST & Javascript (JASON) based APIs. They are providing developer portal for developers to communicate with other developers to discuss, colloborate & share. There … Continue reading
- October 14, 2012 |
- 0 Comments
PHP Image resizing with same quality
We have written a script that will resize all PNG images on same folder with almost same quality. It reduces file sizes to almost 12 times less than Original file. /** * NDOT.in * Created on April 9th 2010 **/ … Continue reading
- October 14, 2012 |
- 0 Comments
