Posts

Graphic Design Companies

Image
Today every industry and business has turned their working grounds and shifted to more reasonable and cost-effective ones. Commercial marketers are bound to work closely with designers, content writers, developers, and others.  In India only, most of the companies took the roadmap of the digital world, in simple words working at their desired locations; house, flat, cafe as per their choice. Functioning through the virtual walls opens up a gateway for graphic designers. Graphic designers boost the name of brands via means of using their creative, intellectual, and inventive mind.  Now, you must be thinking I too have the skills, but how do I get clients or collaborate with other designers. DON’T WORRY!! I have some suggestions that offer services in designing at reasonable prices. Let’s get started with top graphic design companies one by one:- Top Graphic Design Companies 1. Aabhishek Graphics On 22 June 1990, the creative head Manish Vaishnav started a small business with minimal res

TOP RECRUITMENT COMPANIES IN INDIA

Image
Placement organization plays a vital role in matching potential candidates to employers. Today, the whole scenario of recruiting talented people has changed drastically as every company approaches placement agencies to hire candidates that would be valuable assets in the future. Every agency thoroughly checks the background details of candidates, interviews them, and trains them with professionals. Before going into detail about the top recruitment companies, we need to see the advantages of hiring through these organizations. Benefits For Recruiting Through Agencies:-  For the past, many year’s recruitment companies are taking the road map of agencies to hire the workforce, which has proven helpful as follow, 1. Quick hiring process 2. Meeting the purposes 3. Negotiate salary TOP RECRUITMENT COMPANIES IN INDIA 1. RANSSTAD INDIA Keeping the legacy of 28 years, the company has 57K+ temporary employees on-site and over 500K placement to date. The Ransstad is one of the best recruitment a

BEST INDIAN SEO COMPANIES

Image
Search Engine Optimization is a step-wise refinement process involving the quality and quantity of a webpage or website by generating high traffic and leads through search engines. Extracted from search results, here is the checklist of TEN BEST INDIAN SEO COMPANIES, which guides you to grow your business higher. Now, the question is how? So let me help you to get in detail SEO put forward multiple ways to improve the rank of your site or page in search engines. It doesn’t suit only successful business associated yet small ones as well. Through SEO, you can control the dynamics of your firm. In simple words, how many consumers are coming to your site online, checking products, buying, or further recommending and top of that traffic on-site? These all are related to SEO, and if you want to improve your company’s rank here, I would recommend the BEST INDIAN SEO COMPANIES to boost your business visibility. Let’s take a look, 1. AS WEBWORKS In the world of web development and digital mar

How to Create Dynamic Dependent select box using ajax

Image
  You need a dynamic dependent select box. We will explain how to create a dynamic dependent select box in PHP, jquery and ajax. index.php <?php include_once 'dbconfig.php'; ?> <html> <head> <title>Dynamic Dependent Select Box using Ajax</title> <script type="text/javascript" src="jquery-1.4.1.min.js"></script> <script type="text/javascript"> $(document).ready(function() { $("#loding1").hide(); $("#loding2").hide(); $(".country").change(function() { $("#loding1").show(); var id=$(this).val(); var dataString = 'id='+ id; $(".state").find('option').remove(); $(".city").find('option').remove(); $.ajax ({ type: "POST", url: "get_state.php", data: dataString, cache: false, success: function(html) { $("#loding1").hide(); $(".state").html(html

How to Fetch Logged in Username

Image
  after login, we need to fetch the Username. We will explain How to Fetch Logged in the Username. index.php <?php include("db.php"); session_start(); if($_SESSION['username']=="") { session_destroy(); header("location:index.php"); } ?> <html> <head> <title>Fetch Loged in Username</title> </head> </body> <?php include('db.php'); $query="select * from user where username='".$_SESSION['username']."' "; $query1=mysql_query($query); $row=mysql_fetch_array($query1) ?> <h1> <?php echo $row['name']; ?></h1> </body> </html> db.php <?php mysql_connect('localhost','root',''); mysql_select_db('database'); ?>

How to Make Fees Receipt in PHP Using Mysql Database

Image
  In this article, you will learn How to Make Fees Receipt in PHP Using Mysql Database. index.php <html> <title>Add fees</title> </head> <body> <h1><a href="add.php">Add receipt</a> &nbsp &nbsp &nbsp <a href="search.php">Record</a></h1> <form method="POST" oninput="x.value=parseInt(a.value)+parseInt(b.value)+parseInt(c.value)" action="fees.php"> <input type="date" name="date"><br/><br/> Name <input type="text" name="name"><br/><br/> Registration No. <input type="number" name="rno"><br/><br/> Course <select name="course"> <option>Select Course</option> <option value="PHP">PHP</option> <option value="JAVA">JAVA</option> <option value="ACCOUNTS

How to Create a Login system in PHP Using a Session

Image
In this article, we will explain how to create a login system in PHP using a session. ['username']!=$username && $row['password']!=$password) { $error="<p>Wrong User Name and Password</p>"; } if(isset($error)) { echo $error; } else{ require('db.php'); session_start(); $result =mysql_query("select * from users where username='$username' and password='$password'"); while($row=mysql_fetch_array($result)) { $_SESSION['username']=$row['username']; echo"<script>window.location.href='../invoice/'</script>"; } } } ?> db.php <?php mysql_connect('localhost','root',''); mysql_select_db('testbill'); ?>