Posts

My Experience of internship At Lets Grow More

Introduction: Throughout my academic journey, I always believed that hands-on experience is essential to solidify theoretical knowledge. So, when the opportunity arose to intern at a dynamic tech company, I eagerly embraced the chance. Little did I know that this internship would be a transformative experience, allowing me to work on three exciting projects: a Todo App , Fetch Data by making an api call,   a Form App and a Calculator App. In this blog post, I'll share my journey and the tasks involved in each project, all of which culminated in a profound growth in my technical skills. Project 1: Todo App  The internship kick-started with the Todo App project. My primary responsibility was to develop Todo List app that have the ability to add, mark complete and delete tasks.I used react js along with html css and javascript to make this app. Project 2: Fetch Data by making an api call  Because I have made a todo list before now I have some experience of using react ,...

Exam space login.php

<?php if ( isset ($_POST[ "login" ])) { $conn = mysqli_connect ( 'localhost' , 'root' , '' ); $select = mysqli_select_db ($conn, 'examspace' ); if ( ! $select) {      echo   "not connected to database" ; }      // $username=$_POST['username'];     $email = $_POST[ 'email' ];     $password = $_POST[ 'password' ];     //$repass=$_POST['re-password'];              $sql = mysqli_query ($conn, " SELECT   *   From  users  (' $username ', ' $email ', ' $password ') " );    if ( ! mysqli_query ($conn,$sql))   {        echo   "not inserted database" ;   }    else {       header ( "location:login.php" );   } } ? > <! DOCTYPE   html > < html   lang ...

Fetch_employee_data

  <?php include_once ( 'connection.php' ); ? > <! DOCTYPE   html > < html   lang = "en" > < head >     < meta   charset = "UTF-8" >     < meta   http-equiv = "X-UA-Compatible"   content = "IE=edge" >     < meta   name = "viewport"   content = "width=device-width, initial-scale=1.0" >     < title >Employee Data</ title > </ head > < body >           <?php   // $conn = new mysqli('localhost', 'root', '', 'tutorial'); if ( isset ($_POST[ 'search' ])){    $searchKey  =  $_POST[ 'search' ];    $sql  =   " SELECT   *   FROM  employee  WHERE   name   LIKE  '% $searchKey %' " ; } else $sql  =   " SELECT   *   FROM ...

Insert_employee_data

  <?php include ( "connection.php" );           if ( isset ($_POST[ 'name' ] )){                  $name = $_POST[ 'name' ];         $designation = $_POST[ 'designation' ];         $salary = $_POST[ 'salary' ];         $city = $_POST[ 'city' ];                  $sql = " INSERT   INTO  `employee` (`name`, `designation`, `salary`, `city`)  VALUES  ( ' $name ', ' $designation ', ' $salary ', ' $city ') "  ;          // echo $name;           // echo $designation;      ...