Bootstrap 4 advanced grid system and media query tutorial in Hindi Part 3



https://i.ytimg.com/vi/ib2csf2zGEw/hqdefault.jpg



Bootstrap 4 advanced grid system and css media query tutorial in Hindi. and Please use Headphones / ear phones and sorry friends I forgot to add information about database schema planning etc, which I said on startup of this video.

Please use Headphones / ear phones…

But I will cover it in part 4, don’t worry (y) .

and I have added some information about what things and tools etc are needed for a developer or say designer etc.

and off course I am trying my best to explain things in Hindi,
but please subscribe, share, watch full video and like it..

cause it is only the way I could motivate myself to create premium videos free and advanced videos for free 101%.

#MyselfHindiProgrammingTutorials

Original source


15 responses to “Bootstrap 4 advanced grid system and media query tutorial in Hindi Part 3”

  1. i am getting an error please help me
    Fatal error: Uncaught Error: Call to a member function bind_param() on bool

    My codes are :
    <?php

    $firstName = $_POST['first_name'];

    $lastName = $_POST['last_name'];

    $email = $_POST['email'];

    $password = $_POST['password'];

    // Database connection

    $conn = new mysqli('localhost','root','','shayari');

    if($conn->connect_error){

    echo "$conn->connect_error";

    die("Connection Failed : ". $conn->connect_error);

    } else {

    $stmt = $conn->prepare("Insert into shayari(first_name, last_name, email, password) values(?, ?, ?, ?)");

    $stmt->bind_param("ssss", $firstName, $lastName, $email, $password);

    $stmt->execute();

    echo "Registration successfully…";

    $stmt->close();

    $conn->close();

    }

    ?>

Leave a Reply