Skip to main content

PHP / mySQL -database connection successful, but I can't write or display data

DB connection is successfull, but I can't write data to DB neather display it to html/php file. I use 000webhost with mySQL. This is project for university, web programming. I must make website (portfolio) but it has to include php and database. Can you help me to find errors because I'm desperate, I tried everything so far. also, my login doesn't work, I feel like I haven't connected to the database at all even though it says otherwise.

THIS IS ADMIN PANEL (When login is successfull, it has to redirect to admin-panel)

include 'connect.php';

$sql = "SELECT * FROM projekt_web;";
$result = mysqli_query($connection, $sql);
$resultCheck = mysqli_num_rows($result);

if ($resultCheck > 0) {
while($row = mysqli_fetch_assoc($result)) {
    echo "ID: " . $row["id"]. " Name: " . $row["firstName"]." E-mail: " . $row["email"]. "Poruka: " . $row["poruka"]. "<br>";
}
} else {
    echo "U tablici nema zapisa.";
}

mysqli_close($connection);

THIS IS ADMIN LOGIN:

    include 'connect.php';

  if($_SERVER["REQUEST_METHOD"]==="POST"){
    $username=$_POST["username"];
    $password=$_POST["password"];
  
    $sql = "SELECT * FROM $db WHERE username='".$username."' AND password='".$password."'; ";
  
    $result = mysqli_query($connection, $sql);
  
    $row = mysqli_fetch_array($result);
  
    if($row["username"]=="admin" and $row["password"]=="admin"){
      $_SESSION["username"]=$username;
      header("location: admin-panel.php");
    }else{
      echo '<script>alert("Korisničko ime i/ili lozinka nisu ispravni. Molimo unesite ispravne podatke.")</script>';
    }
  }



  mysqli_close($connection);

DB CONNECTION:

 $host = "localhost";
  $user = "id17984309_projekt_web278";
  $password = "\J10L%_4OVMCo@ci";
  $db = "id17984309_projekt_web";

  $connection = mysqli_connect("$host", "$user", "$password", "$db");

  if (!$connection) {
    die("Connection failed: " . mysqli_connect_error());
  }
  echo "Connected successfully.";


THIS IS index.php where is login form and php code:

if(isset($POST['submit'])){
    $firstName = $_POST['firstName'];
    $lastName = $_POST['lastName'];
    $email = $_POST['email'];
    $poruka = $_POST['poruka'];
    
    $sql = "INSERT INTO $db (firstName, lastName, email, poruka) VALUES ('$firstName', '$lastName', '$email', '$poruka');";
    
    $result = mysqli_query($connect, $sql);
    
    if($result)
    {
        $message = "Vaša poruka je uspješno poslana!";
        echo "<script type='text/javascript'>alert('$message');</script>";
    }

    mysqli_close($connection);
}

image mySQL database (2 tables, first for login and second for messages from future users from portfolio)



source https://stackoverflow.com/questions/70173545/php-mysql-database-connection-successful-but-i-cant-write-or-display-data

Comments

Popular posts from this blog

Where and how is this Laravel kernel constructor called? [closed]

Where and how is this Laravel kernel constructor called? public fucntion __construct(Application $app, $Router $roouter) { } I have read the documentation and some online tutorial but I can find any clear explanation. I am learning Laravel and I am wondering where does this kernel constructor receives its arguments from. "POSTMOTERM" CLARIFICATION: Here is more clarity.I have checked the boostrap/app.php and it is only used for boostrapping the interfaces into the container class. What is not clear to me is where and how the Kernel class is instatiated and the arguments passed to the object calling the constructor.Something similar to; obj = new kernel(arg1,arg2) or, is the framework using some magic functions somewhere? Special gratitude to those who burn their eyeballs and brain cells on this trivia before it goes into a full blown menopause alias "MARKED AS DUPLICATE". To some of the itchy-finger keyboard warriors, a.k.a The mods,because I believe in th...

Why is my reports service not connecting?

I am trying to pull some data from a Postgres database using Node.js and node-postures but I can't figure out why my service isn't connecting. my routes/index.js file: const express = require('express'); const router = express.Router(); const ordersCountController = require('../controllers/ordersCountController'); const ordersController = require('../controllers/ordersController'); const weeklyReportsController = require('../controllers/weeklyReportsController'); router.get('/orders_count', ordersCountController); router.get('/orders', ordersController); router.get('/weekly_reports', weeklyReportsController); module.exports = router; My controllers/weeklyReportsController.js file: const weeklyReportsService = require('../services/weeklyReportsService'); const weeklyReportsController = async (req, res) => { try { const data = await weeklyReportsService; res.json({data}) console...

How to show number of registered users in Laravel based on usertype?

i'm trying to display data from the database in the admin dashboard i used this: <?php use Illuminate\Support\Facades\DB; $users = DB::table('users')->count(); echo $users; ?> and i have successfully get the correct data from the database but what if i want to display a specific data for example in this user table there is "usertype" that specify if the user is normal user or admin i want to user the same code above but to display a specific usertype i tried this: <?php use Illuminate\Support\Facades\DB; $users = DB::table('users')->count()->WHERE usertype =admin; echo $users; ?> but it didn't work, what am i doing wrong? source https://stackoverflow.com/questions/68199726/how-to-show-number-of-registered-users-in-laravel-based-on-usertype