Posts

How To Automatically Translate A Full Web Site In Multiple Languages: Best Web Site Translation Tools

Image
Do you want to automatically translate all of the pages of your web site into the most popular languages and facilitate foreign visitors get an insight into your content without hiring a pro translator? Here is we guide to the best tools and services to automatically translate your web site in multiple languages. Best Web Site Translation Tools Google Language Tools Google Language Tools allows you to translate web pages or texts instantly. The service is completely free, and supports all the principal languages spoken across the World: Chinese, Japanese, Arabic, Hindi, French, Italian, Spanish, and many more. You can add a gadget (Google's for widget) to your site pasting just a line of code. Your visitors will then have a drop-down menu where they can choose their mother tongue, and have your content translated automatically (just plain text, no images or hidden texts). About the text translation option, Google Translation Tools has no special character fe...

upload large file on server

Write this code in the .htaccess file ----code----------------------------------- suPHP_ConfigPath  /home/sdman007/public_html    <Files php.ini>    order allow,deny    deny from all    </Files> --------------------------------------- Create php.ini file in your root path  ----code---------------------------------- ;;;;;;;;;;;;;;;; ; File Uploads ; ;;;;;;;;;;;;;;;; ; Maximum allowed size for uploaded files10mb  ( You can change it) upload_max_filesize = 10M post_max_size = 10M max_execution_time=300              ;This is exicution time 300 like as 5 min max_input_time =300 ------------------------------------- After do that login ur cpanel again . Now you can see php configuration using the <? echo phpinfo() ; ?> function.

URL Rewriting- Top 5 Ways of PHP URL Rewriting

Introduction In this era of technology enhancement, Internet has become the major source of information. If we need any kind of information, we usually consult from the Search Engines (particularly Google). Why? Because of the reason, Search Engine’s increased searching capabilities. Thus every website owner wants now online visibility on top search engines. And for this you need to follow search engine guidelines. These are the guidelines which are helpful in the Search engine optimization of your website. URL Rewriting is one of the good techniques followed in Search Engine Optimization. Consider more understanding of URL Rewriting and its importance: Static URLS Vs Dynamic URLS Static URL’s are more to be recognizable than dynamic URL’s for the number of reasons: Static URL’s generally rank better in Search Engines. Search Engines Crawls the Content of the static URLs much faster as compare to the dynamic URL. Static URL looks pretty or friendlier to the end-user....

how to show alert box on the click in link

<html> <head> <script type="text/javascript"> document.getElementById('myDeleteButton').onclick = function() {   return confirm('Are you sure you want to delete?'); } </script> </head> <body> <a onclick="javascript:return confirm('Are you sure you wish to delete? This action cannot be undone.')" href="DELETE-SCRIPT-URL"> Delete </a> </body> </html>

how to show table data in page formet

<?php session_start(); include("_incu/adminconnectdb.php"); include("_incu/func.php"); $realname=veryfy(); include("functions.php"); $id = $_GET['id']; ?> <?php if($id!="")     {     $query = "DELETE from contact where id='$id'"; $result = mysql_query($query) or die(mysql_error()."Couldn't update record information!"); $_SESSION['msg'] ="One Contact deleted Successfully"; header("Location: adminhome.php"); exit;     }   ?> //--------------------page no........................ <?php //Set the page size $PageSize =  10; $StartRow = 0; //Set the page no if(empty($_GET['PageNo'])) {     if($StartRow == 0)     {         $PageNo = $StartRow + 1;     } } else {     $PageNo = $_GET['PageNo'];     $StartRow = ($PageNo - 1) * $PageSize; } //Set the counter start if($PageNo % $PageSize == 0){     $CounterStart = $P...

How to use Google map in your page

<iframe width="100%" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=vcon+engineers,+Noida&amp;sll=24.20689,74.311523&amp;sspn=8.110402,19.775391&amp;ie=UTF8&amp;ll=28.51629,77.520443&amp;spn=0.140162,0.418975&amp;t=h&amp;output=embed&amp;s=AARTsJovIkikYm5dXPbcrV_yDntEZnAjFg"></iframe>                         <br />                        <small><a href="http://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=vcon+engineers,+Noida&amp;sll=24.20689,74.311523&amp;sspn=8.110402,19.775391&amp;ie=UTF8&amp;ll=28.51629,77.520443&amp;spn=0.140162,0.418975&amp;t=h" target="_blank" style="color:#0000FF;text-align:left">View Larger...

How to multiple search by the one word

<?php         if ( $_POST["funSearch"] != ""  )        {       $cond='';   if  ( $_POST["name"]  != ""  )       {     $cond .=" and  firstname like '%". $_POST["name"] ."%' " ; $_SESSION["nam"]=$_POST["name"];   }   else   {    $_SESSION["nam"]="";   }      if  ( $_POST["mobile"]  != ""  )       {     $cond .=" and  mobile1 like '%". $_POST["mobile"] ."%' " ;   $_SESSION["mob"]=$_POST["mobile"];   }   else   {    $_SESSION["mob"]="";   }      if  ( $_POST["address"]  != ""  )       {     $cond .= " and  address1 like '%". $_POST["address"] ."%' ";    $_SESSION["add"]= $_POST["addre...