Website functioneerd met inloggen in Localhost op login maar online niet.
Antar Hoezen
03/12/2022 15:17:58Wie weet misschien wat er aan de onderstaande PHP code niet juist is ?
De code doet het allemaal goed als ik het test op de localhost.
Zodra ik het upload naar de website gaat het inloggen niet goed.
De code doet het allemaal goed als ik het test op de localhost.
Zodra ik het upload naar de website gaat het inloggen niet goed.
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php
if(isset($_POST["login"]))
{
$count=0;
$res=mysqli_query($link,"select * from registration where username='$_POST[username]' && password='$_POST[password]'");
$count=mysqli_num_rows($res);
if ($count==0)
{
?>
<script type="text/javascript">
document.getElementById("failure").style.display="block";
</script>
<?php
}
else {
$_SESSION["username"]=$_POST["username"];
?>
<script type="text/javascript">
window.location="select_exam.php";
</script>
<?php
}
}
?>
if(isset($_POST["login"]))
{
$count=0;
$res=mysqli_query($link,"select * from registration where username='$_POST[username]' && password='$_POST[password]'");
$count=mysqli_num_rows($res);
if ($count==0)
{
?>
<script type="text/javascript">
document.getElementById("failure").style.display="block";
</script>
<?php
}
else {
$_SESSION["username"]=$_POST["username"];
?>
<script type="text/javascript">
window.location="select_exam.php";
</script>
<?php
}
}
?>
Gewijzigd op 03/12/2022 19:14:33 door - Ariën -
PHP hulp
25/11/2024 06:40:00Adoptive Solution
03/12/2022 15:53:02Voeg foutafhandeling toe aan je query.
Toevoeging op 03/12/2022 19:25:36:
https://github.com/arienclaij/sql-boilerplate/tree/master/mysqli
Hier staan een aantal goede voorbeelden voor de opbouw met mysqli-functies.
Toevoeging op 03/12/2022 19:25:36:
https://github.com/arienclaij/sql-boilerplate/tree/master/mysqli
Hier staan een aantal goede voorbeelden voor de opbouw met mysqli-functies.