Invezza focuses on your business growth by delivering your message to the world and make your idea speak with our creativity.
Code Igniter Installation and First Run: 1. Download the zip file from the above URL. Unzip and put in to xampp/htdoc folder 2. Open the application/config/config.php file with a text editor and set your base URL. lets asumme that your base URL is set like this: $config['base_url'] = http://localhost/CodeIgniter; 3. if you intend to use a...
Hello everybody, and welcome to Invezza's blog. Today we are comparing three types of development: front-end versus back-end versus full-stack development. Read this article to find out what these developers do and who is the best to hire. On our blog, we share thoughts on recent developments in the tech industry. Follow us not to miss...
Hello everyone, and welcome to Invezza's blog. Today we are talking about CRM and ERP platforms. Both types of software increase profits but do it in different ways. Wondering which option is more beneficial? Read this article till the end to find out what your business really needs ;ERP or CRM platform. On our blog,...
Hey everyone, We're going over the log 4j issue in this article at a pretty high level. Let's get started. To give you an idea of what's going on... This is probably one of the biggest, if not the biggest, security exploits we have ever seen. For starters here, log4j is not a virus; it's...
[code lang="js"] jQuery(document).ready(function(){ // Keypress Up $('#ac_compete').keyup(function() { // Getting Value from textbox var res_value = $("#ac_compete").val(); $.ajax({ type: "POST", url: "get_data.php", // Calling php file data: "acc_value="+res_value, success: function(data){ $('#quote_price').html(data); // Display result from get_data.php file } }); }); }); [/code]
Index.php : <body> <center> <form name="myform" action="" method="get"> Name : <input type="text" name="name" /><br /> Mobile : <input type="text" name="mbi" /><br /> Qulification (Mulitiple Selection) <select name="quli[]" multiple="multiple"> <br /> <option>select</option> <option>Mca</option> <option>Bsc</option> <option>Bcom</option> <option>M</option> </select><br /> Gender <input type="radio" name="gr" value="male"/> Male <input type="radio" name="gr" value="female"/> Female<br /> <input type="submit" name="submit" value="Insert" /> </form>...
Get the second highest salary from employee table in mysql: SELECT max(salary) as salary FROM employee WHERE salary < (SELECT max(salary) FROM employee)
Checkbox and radio button validation in javascript: <script> function validateCourse(){ count = 0; gend = 0; len = document.testForm.elements.length; for(i=0;i<len;i++){ elt = document.testForm.elements[i]; if(elt.type == 'checkbox' && elt.name=='course' && elt.checked){ count++; } if(elt.type == 'radio' && elt.name=='gender' && elt.checked){ gend++; } } if(count<3){ alert("Please Select 3...
Click below link to view: WordpressCheatSheet
Function: A function is a piece of code that sits dormant until it is referenced or called upon to do its "function". In addition to controllable execution, functions are also a great time saver for doing repetitive tasks. Instead of having to type out the code every time you want something done, you can simply...
Copyright © Invezza Technologies, all Rights Reserved.