captcha alpha numeric in php
captcha alpha numeric in php Creating a simple alphanumeric CAPTCHA in PHP involves generating a random string, displaying it as an image, and validating the user input against the generated string. Below is a...
captcha alpha numeric in php Creating a simple alphanumeric CAPTCHA in PHP involves generating a random string, displaying it as an image, and validating the user input against the generated string. Below is a...
ebooks of drupal 6 and drupal 7 Pro_Drupal_7_Development_3rd_Edition Pro Drupal Development 6 Learning.Drupal.6.Module.Development.May.2008
magento free ebook download Download Ebook of magento from here users-guide TheUnical_Magento_developer_Guide
google translate selected language A very common problem is to add google translator with already selected language which can be fix by the following code. function googleTranslateElementInit() { new google.translate.TranslateElement({ pageLanguage: ‘en’, includedLanguages:...
google translate default language Google translate helps you to automatic convert the text of website into the your understandable language. For example if you understand English language only and the website is in some...
call a function regularly call a function after a particular time period function getdata(){ var langu = jQuery(“.goog-te-combo”).html(‘<option value=””>Select Lanugage</option><option value=”en”>English</option><option value=”ja”>Japanese</option>’); jQuery(“.goog-te-gadget”).css({“margin-top”:”0px”}); intervaltime(); } </script> <script> function intervaltime(){ window.setInterval(function(){ getdata(); }, 5000); }...
drupal 6 basic form <?php function test_myform($form_state) { // Access log settings: $options = array(‘1’ => t(‘Enabled’), ‘0’ => t(‘Disabled’)); $form[‘access’] = array( ‘#type’ => ‘fieldset’, ‘#title’ => t(‘Access log settings’), ‘#tree’ => TRUE,...
finding mac address finding mac address <?php /* * Getting MAC Address using PHP *Kapil sharma */ ob_start(); // Turn on output buffering system(‘ipconfig /all’); //Execute external program to display output $mycom=ob_get_contents(); // Capture...
online streaming in php,cctv in php online streaming,cctv in php WOWZA is a server that is use for live steaming
validation of number in javascript function check_number() { var number=document.getElementById(“mobileno”).value; if(isNaN(number)) { alert(“number only”); return false; } else { return true; } }
Recent Comments