how to select mysql column with comma separated value in php

select mysql column with comma separated value One day i faced a problem for matching a single value holds in variable from a database column which holds comma separated values for search box and feel typical and lenghty attempts.I found its solution in very easy step.I am sharing its solution with all of you.Simple query … Read more

how to display captcha image of product review in opencart

Display Captcha Image on Opencart Product Page Just change your function getcode() in captcha.php in system library file and you will get captcha image on product review form in opencart. If,still you are not getting captcha just delete your browser cache and cookies and you will get it successfully. It will display captcha image in … Read more

How To Write a Hello World Program in JavaScript

In this post, I will show you how to write a hello world program in JavaScript. It is very simple to write hello world program in JavaScript with few lines. Let’s see HTML <div id=”mydiv2″></div> JAVASCRIPT <script type=”text/javascript”> document.getElementById(“mydiv2”).innerHTML = “Hello, world!”; </script> Here I have used document.getElementById method to return the element with specific … Read more

How to Get Value of Div Content Using jQuery

Hello guys, if you want to get value of div content using jQuery then you can fulfil your need using this example. Just check out this tutorial. HTML <div class=”readonly_label” id=”example”> Other </div> JQUERY First include jQuery library <script src=”https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js”></script> <script> $(document).ready(function(){ var divContent = $(‘#example’).text(); alert(divContent); }); </script> Read Also: How To Write a … Read more