Our Thoughts

Invezza focuses on your business growth by delivering your message to the world and make your idea speak with our creativity.

Category: Uncategorized

Free CodeIgniter Tutorial

Jan 16th, 2023 Uncategorized

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...

Read more

Front End Developer Vs. Back End Developer Vs. Full Stack Developer

Jun 01st, 2022 Uncategorized

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...

Read more

CRM vs ERP: Here’s the Difference And What Should You Pick?

Dec 30th, 2021 Uncategorized

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,...

Read more

What is log4j Security Issue?

Dec 16th, 2021 Uncategorized

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...

Read more

JQuery , Ajax and PHP Example

Dec 11th, 2015 Uncategorized

[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]

Read more

PHP Create, Read, Update and Delete (CRUD) Application Tutorial

Jan 31st, 2014 Uncategorized

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>...

Read more

Mysql

Dec 09th, 2013 Uncategorized

Get the second highest salary from employee table in mysql: SELECT max(salary) as salary FROM employee WHERE salary < (SELECT max(salary) FROM employee)

Read more

Checkbox validation in javascript

Apr 25th, 2013 Uncategorized

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...

Read more

WordPress Cheat Sheet

Apr 18th, 2013 Uncategorized

Click below link to view: WordpressCheatSheet

Read more

Functions in Javascript

Apr 16th, 2013 Uncategorized

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...

Read more