The Complete PHP MySQL Professional Course with 5 Projects




This Top PHP Youtube Tutorial is for a complete beginner. You Can Find the full course of 19.5 hours in a given link with 94% Coupon= https://goo.gl/FWBeSy …

Original source


37 responses to “The Complete PHP MySQL Professional Course with 5 Projects”

  1. i started taking your course but i need to confess your english give me a headache english isn't my first language and this indian english just kill me when it comes to learning something difficult , i still in the number lesson but i will do my best to finish the course soon

  2. Rubbish, there is no project no database, no admin panel nothing…………………. wasting of time.. in the end you just give a link of udemy of 12$ to get this fucking 5 project course. DONT CHEAT a programmer never do.

  3. If I pay for this course, will I be able to download the videos and re-watch anytime… Internet data is quite expensive here, I need to go thru the course over and over again… So I need to be able to download it.

  4. Hi Jazeb, I'm not getting the "Too long string !" displayed on categories.php page, though i've checked the code completely its similar to your code(am using mysqli to connect to DB), could you please check out what's the problem in my code as below, as am trying to solve it from 2 days : Eagerly waiting for reply …
    ——————————————————-
    function redirect_to($New_Location){
    header ("Location:".$New_Location);
    exit;
    }
    ————————————————————
    function Message(){
    if(isset($_SESSION["ErrorMessage"])){
    $output = "<div class="alert alert-danger">";
    $output.= htmlentities($_SESSION["ErrorMessage"]);
    $output.="</div>";
    $_SESSION["ErrorMessage"] = null;
    return $output;
    }
    }
    ————————————————————–
    <?php require_once("Include/DB.php"); ?>
    <?php require_once("Include/sessions.php"); ?>
    <?php require_once("Include/functions.php"); ?>

    <?php
    if(isset($_POST["submit"])){
    $category = mysqli_real_escape_string($_POST["category"]);
    date_default_timezone_set("Asia/Kolkata");
    $currentTime = time();
    $dateTime = strfTime("%B-%d-%Y %H:%M:%S", $currentTime);
    $dateTime;
    if (empty($category)){
    $_SESSION["ErrorMessage"] = "Please fill out all fields!";
    redirect_to("categories.php");

    } elseif(strlen($category) > 99){
    $_SESSION["ErrorMessage"] = "Too long name!";
    redirect_to("categories.php");
    }

  5. Can someone tell me why this is not working … ??

    <html>
    <head>
    <title>arrays-lol</title>
    </head>
    <body>
    <?php

    $name=array('Ahmed', 'Ali', 'Hamada', 'Adel');
    echo $name[rand(0, 3)]; echo " "; echo $name[rand(0, 3)] ; echo " loves ";
    $foodtype=array('Pizza','KFC hot flammmmes!', array("hmm yammy","mmm yanke"), 'Kebab Elmohamdy');
    echo $foodtype[rand(0 ,1)]; echo "<br>"; echo "<br>";
    echo $foodtype[2]

    ?>
    </body>
    </html>

Leave a Reply