Jump to content
  • 0

В чем ошибка, уже 2 день мучаюсь


skoch244
 Share

Question


$family = $_SESSION['family'];
$name = $_SESSION['name'];
$patronymic = $_SESSION['patronymic'];
$group = $_SESSION['group'];
$specialty = $_SESSION['specialty'];
$discipline = $_SESSION['discipline'];
$db = mysql_connect ('***.***.***.***','*****','*****');
mysql_select_db ('*****',$db);
$result = mysql_query ("INSERT INTO user (family,name,patronymic,group,specialty,discipline)
VALUES('$family','$name','$patronymic','$group','$specialty','$discipline')");
if ($result == 'TRUE') {
unset($_SESSION['family']);
unset($_SESSION['name']);
unset($_SESSION['patronymic']);
unset($_SESSION['group']);
unset($_SESSION['specialty']);
unset($_SESSION['discipline']);
exit ("<html><head><meta http-equiv='Refresh' content='3; URL=".$_SERVER["REQUEST_URI"]."'></head></html>");
}
else {
exit ("<html><head><meta http-equiv='Refresh' content='2; URL=".$_SERVER["REQUEST_URI"]."'></head></html>");
}

  • Like 1
Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

Ожидается запись данных в таблицу, в этой же базе есть еще одна таблица, с ней проблем нет, а вот с этой не могу понять что делать, вот еще проще код, он так же упорото не хочет работать


<?php
$family = 'Максимчук';
$name = 'Богдан';
$patronymic = 'Дмитриевич';
$group = 'ПО-41';
$specialty = 'ПО';
$discipline = 'Основы построения автоматизированных информационных систем';
$yes = 'О';
include ("bd.php");
$result = mysql_query ("INSERT INTO user (family,name,patronymic,group,specialty,discipline,yes)
VALUES('$family','$name','$patronymic','$group','$specialty','$discipline','$yes')");
exit ("<html><head><meta http-equiv='Refresh' content='0; URL=http://*****.*****.ru/*****.php'></head></html>");
?>

Edited by skoch244
Link to comment
Share on other sites

  • 0

Весь этот сценарий - одна большая ошибка. Так делают нубы никто не делает. Узнай почему?

Это полный трэшь. Воспользуйся, хотя бы PDO.

Посмотри, как работает протокол HTTP. Что дает заголовок "location: /..."

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy