Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
2
Posts with Downvotes
1
Downvoting Members
2
0 Endorsements
~3K People Reached
Interests
study
Favorite Tags

9 Posted Topics

Member Avatar for shivya_1

Hello to all, I am trying to create an admin panel so that admin can insert data into database. This is my code <?php include("connection.php"); if (isset($_POST['submit'])) { $name = $_POST["name"]; $brand = $_POST['brand']; $quantity = $_POST['quantity']; $detail = $_POST['detail']; $unit = $_POST['unit']; $color = $_POST['color']; $material = $_POST['material']; $image …

Member Avatar for diafol
0
246
Member Avatar for shivya_1

Hello to all, I am facing an issue with login form. Everything is correct, but.. <?php session_start(); include("config.php"); $username = $_POST["username"]; $password = $_POST["password"]; $sql = "SELECT * FROM register where E_mail = '$username' and password = '$password'"; $result = mysqli_query($conn, $sql); if ($result) { $_SESSION['username'] = $username; header("location:index.php"); } …

Member Avatar for t_thakar
0
303
Member Avatar for shivya_1

Hello to all, I am facing an issue in registering values into database through php. Many times i have done the same but i don't know why i am unable to do this now. Since from 2-3 months, I have not done anything in php.Please help me out.. <?php include("config.php"); …

Member Avatar for cereal
0
315
Member Avatar for shivya_1

I am new here... I am facing a problem in inserting data into database through php. "Connection is established properly." Error is:-error in your sql syntax, correct your query. $firstName = $_POST['firstName']; $lastname = $_POST['lastname']; $contact =$_POST['contact']; $sex = $_POST['gender']; $dob = $_POST['dob']; $email = $_POST['email']; $country = $_POST['country']; $expr …

Member Avatar for inthewind
0
406
Member Avatar for shivya_1

Hello to all, I am facing a problem with my localhost(xampp), I have installed localhost and it was working fine. After Few days, I have started my Xampp control panel and run "localhost/phpmyadmin", this page is blank now. Nothing appears on screen.

Member Avatar for rproffitt
0
84
Member Avatar for UI
Member Avatar for rproffitt
0
543
Member Avatar for guyinpv
Member Avatar for diafol
3
265
Member Avatar for shivya_1

Hello to all, I am working on a project of job posting. There is a table in database. I have a html form and postcode.php (there will be code) , I am facing a problem with this code. **My html form code:-** <form name="posting" action="postcode.php"> <table class="table"> <h4>Job Details: <span>specify …

Member Avatar for Traevel
0
263
Member Avatar for sireiz

Use this code:- <!DOCTYPE html> <html> <head> <style> input { padding: 10px; background-color: yellow; -webkit-border-image: url(border.png) 30 round; /* Safari 3.1-5 */ -o-border-image: url(border.png) 30 round; /* Opera 11-12.1 */ border-image: url(border.png) 30 round; } </style> </head> <body> <input type="button" value="submit"> </body> </html>

Member Avatar for shivya_1
0
258

The End.