Quantcast
Channel: PHP Freaks: PHP Help
Viewing all articles
Browse latest Browse all 13200

Session_id

$
0
0

Notice: Undefined index: id in C:\xampp\htdocs\Guttz\Edit.php on line 2

 

 

<?php
        $id = $_GET['id'];
        $host = "localhost";
        $user = "root";
        $pass = "";
        $db = "guttz";
        $link = mysqli_connect($host, $user, $pass, $db);
        
        $query ="SELECT * FROM designers WHERE id ='$id'";
        $result = mysqli_query($link, $query);
        $row = mysqli_fetch_array($result) or die (mysqli_error($link));
        
        mysqli_close($link);
        ?>
        

The get and the post has been the problem . How can I store and save id in session. What is the codes for it ? [attachment=1791:Edit.php]


Viewing all articles
Browse latest Browse all 13200

Trending Articles