Інтернет-магазин комп’ютерної техніки Shop.ua "ІО.Electrical"
Розробка сайту інтернет-магазину комп’ютерної техніки. Структура об’єктів і зв’язків предметної області: головна, таблиці менеджерів, складу, інформація про товар, сторінки користувачів, покупців. Створення резервної копії бази даних, рhp програма.
Рубрика | Программирование, компьютеры и кибернетика |
Вид | курсовая работа |
Язык | русский |
Дата добавления | 06.08.2013 |
Размер файла | 3,4 M |
Отправить свою хорошую работу в базу знаний просто. Используйте форму, расположенную ниже
Студенты, аспиранты, молодые ученые, использующие базу знаний в своей учебе и работе, будут вам очень благодарны.
cur_element = document.getElementsByName("arrival_date"+i);
var arrival_date = cur_element[0].value;
cur_element = document.getElementsByName("product_number"+i);
var product_number = cur_element[0].value;
cur_element = document.getElementsByName("price"+i);
var price = cur_element[0].value;
window.location.href = "edit_table.php?storage_item_id="+storage_item_id+"&product_id="+product_id+"&arrival_date="+arrival_date+"&product_number="+product_number+"&price="+price;
}
function edit(i)
{
var cur_element;
cur_element = document.getElementsByName("product_id"+i);
cur_element[0].removeAttribute("readonly");
cur_element = document.getElementsByName("arrival_date"+i);
cur_element[0].removeAttribute("readonly");
cur_element = document.getElementsByName("product_number"+i);
cur_element[0].removeAttribute("readonly");
cur_element = document.getElementsByName("price"+i);
cur_element[0].removeAttribute("readonly");
var commit_button;
commit_button = document.createElement("input");
commit_button.setAttribute("type", "button");
commit_button.setAttribute("class", "button_color button_text");
commit_button.setAttribute("name","storage_item_edit");
commit_button.setAttribute("value","Підтвердити");
commit_button.setAttribute("onClick","submit_editing("+i+");");
var edit_button = document.getElementsByName("edit"+i)[0];
edit_button.parentNode.replaceChild(commit_button,edit_button);
var cancel_button = document.createElement("input");
cancel_button.setAttribute("type", "button");
cancel_button.setAttribute("class", "button_color button_text");
cancel_button.setAttribute("value","Відміна");
cancel_button.setAttribute("onClick","window.location.href='storage_item.php'");
var delete_button = edit_button = document.getElementsByName("delete"+i)[0];
delete_button.parentNode.replaceChild(cancel_button,delete_button);
}
function deleting(i)
{
var cur_element;
cur_element = document.getElementsByName("storage_item_id"+i);
var customer_id = cur_element[0].value;
window.location.href = "delete_row.php?storage_item_id="+customer_id;
}
</script>
<?php
include_once 'site_top.txt';
$_SESSION['user']->greeting($_GET['log_err']);
?>
<html>
<head>
</head>
<body>
<meta content="text/html" charset="utf-8">
<link rel="stylesheet" href="styles.css" type="text/css">
<link rel="stylesheet" href="css/ui-lightness/jquery.ui.datepicker.css" type="text/css">
<script type='text/javascript' src='js/jquery.js'></script>
<script type='text/javascript' src='js/jquery-ui-1.8.16.custom.min.js'></script>
<script type='text/javascript' src='js/jquery.ui.datepicker-uk.js'></script>
<div class="main_div">
<div class="table_title_text"><a class="table_title_text" href="storage_item.php">таблиця товарів складу</a></div>
<?php
if($_GET['error'])
echo "<u><p align=center><font class='color_text' size=5>".$_GET['error']."</font></p></u>";
?>
<div class="table_view_div">
<table border="1">
<tr align="center"><td>Код товару складу</td><td>Код товару</td><td>Дата прибуття</td><td>Кількість товарів</td><td>Ціна</td></tr>
<?php
$user = $_SESSION['user'];
$user->db_connect();
$sql = "SELECT * FROM storage_item";
$result = mysql_query($sql);
for($i=1;$i<=mysql_num_rows($result);$i++)
{
$row = mysql_fetch_array($result);
echo "<tr><td>";
echo "<input type='text' readonly name='storage_item_id".$i."' value='".$row['storage_item_id']."'>";
echo "</td><td>";
echo "<input type='text' readonly name='product_id".$i."' value='".$row['product_id']."'>";
echo "</td><td>";
echo "<input id='datepicker' type='text' readonly name='arrival_date".$i."' value='".$row['arrival_date']."'>";
echo "</td><td>";
echo "<input type='text' readonly name='product_number".$i."' value='".$row['product_number']."'>";
echo "</td><td>";
echo "<input type='text' readonly name='price".$i."' value='".$row['price']."'>";
if(!strcmp($_SESSION['status'],'admin'))
{
echo "</td><td>";
echo "<input type=button class='button_color button_text' name='edit".$i."' value='Редагувати' onClick='edit(".$i.");'>";
echo "</td><td>";
echo "<input type=button class='button_color button_text' name='delete".$i."' value='Видалити' onClick='deleting(".$i.");'>";
}
echo "</td></tr>";
}
mysql_close();
?>
</table>
</div>
<script>
$("#datepicker").datepicker({dateFormat: 'yy-mm-dd'});
</script>
<?php
include_once 'site_bottom.txt';
?>
</div>
</body>
</html>
product.php
<?php
require_once 'users.php';
session_start();
?>
<script language="javascript">
function cancel_edit()
{
var table = document.getElementById("table");
table.innerHTML = "";
}
function addRowForm()
{
var add_table = document.getElementById("table");
var head = "<tr align='center'><td>Код класу товарів</td><td>Назва</td><td>Картинки</td><td>Короткий опис</td><td>Повний опис</td><td>Характеристика</td></tr>";
var data_input = "<form action='add_row.php' method='post' enctype='multipart/form-data'><tr>";
data_input = data_input + "<td><input size='5' type='text' name='father_id'></td>";
data_input = data_input + "<td><input type='text' name='title'></td>";
data_input = data_input + "<td><input type='file' name='picture'></td>";
data_input = data_input + "<td><textarea cols='10' rows='10' type='text' name='small_description'></textarea></td>";
data_input = data_input + "<td><textarea cols='15' rows='30' type='text' name='full_description'></textarea></td>";
data_input = data_input + "<td><textarea cols='15' rows='30' type='text' name='characteristic'></textarea></td>";
data_input = data_input + "</tr>";
data_input = data_input + "<tr><td><input type = 'submit' class='button_color button_text' value = 'Додати'></td>";
data_input = data_input + "<td><input type = 'button' class='button_color button_text' value = 'Відміна' onClick = 'cancel_edit();'></td>"
add_table.innerHTML = head + data_input;
}
function add_to_storage(i)
{
var cur_element;
cur_element = document.getElementsByName("product_id"+i);
var product_id = cur_element[0].value;
window.location.href = "storage_item.php?product_id="+product_id;
}
function deleting(i)
{
var cur_element;
cur_element = document.getElementsByName("product_id"+i);
var product_id = cur_element[0].value;
window.location.href = "delete_row.php?product_id="+product_id;
}
</script>
<?php
include_once 'site_top.txt';
$_SESSION['user']->greeting($_GET['log_err']);
if($_GET['error'])
echo "<u><p align=center><font class='color_text' size=5>".$_GET['error']."</font></p></u>";
?>
<html>
<head>
</head>
<body>
<meta content="text/html" charset="utf-8">
<link rel="stylesheet" href="styles.css" type="text/css">
<div class="main_div">
<div class="table_title_text"><a class="table_title_text" href="product.php">таблиця товарів</a></div>
<div class="table_view_div">
<table border="1">
<tr align="center"><td>Код</td><td>Код класу товару</td><td>Назва</td><td>Картинка</td><td>Короткий опис</td><td>Повний опис</td><td>Характеристика</td></tr>
<?php
$user = $_SESSION['user'];
$user->db_connect();
$sql = "SELECT * FROM product";
$result = mysql_query($sql);
for($i=1;$i<=mysql_num_rows($result);$i++)
{
$row = mysql_fetch_array($result);
echo "<tr><td>";
echo "<input type='text' size='5' readonly name='product_id".$i."' value='".$row['product_id']."'>";
echo "</td><td>";
echo "<input type='text' size='5' readonly name='father_id".$i."' value='".$row['father_id']."'>";
echo "</td><td>";
echo "<input type='text' readonly name='title".$i."' value='".$row['title']."'>";
echo "</td><td>";
echo "<img src=image.php?product_id=".$row['product_id'].">";
echo "</td><td>";
echo "<textarea cols='10' rows='5' readonly name='small_description".$i."'>".$row['small_description']."</textarea>";
echo "</td><td>";
echo "<textarea cols='10' rows='5' readonly name='full_description".$i."'>".$row['full_description']."</textarea>";
echo "</td><td>";
echo "<textarea cols='10' rows='5' readonly name='characteristic".$i."'>".$row['characteristic']."</textarea>";
if(!strcmp($_SESSION['status'],'admin'))
{
echo "</td><td>";
echo "<input type=button class='button_color button_text' name='edit".$i."' value='Додати на склад' onClick='add_to_storage(".$i.");'>";
echo "</td><td>";
echo "<input type=button class='button_color button_text' name='delete".$i."' value='Видалити' onClick='deleting(".$i.");'>";
}
echo "</td></tr>";
}
mysql_close();
?>
</table>
<?php
if(!strcmp($_SESSION['status'],'admin'))
{
echo "<br>";
echo "<table><tr>";
echo "<td><input type='button' class='button_color button_text' value='Додати рядок' onClick='addRowForm();'></td>";
echo "</tr></table>";
echo "<br>";
echo "<table id='table'></table>";
}
?>
</div>
<?php
include_once 'site_bottom.txt';
?>
</div>
</body>
</html>
buy.php
<?php
require_once 'users.php';
session_start();
if(!isset($_SESSION['status']))
{
$user = new guest;
$_SESSION['user'] = $user;
$_SESSION['status'] = "guest";
}
else
$user = $_SESSION['user'];
?>
<html>
<head>
</head>
<body>
<meta content="text/html" charset="utf-8">
<link rel="stylesheet" href="styles.css" type="text/css">
<div class="main_div">
<?php
include_once 'site_top.txt';
$_SESSION['user']->greeting($_GET['log_err']);
include_once 'menu.txt';
?>
<br>
<table style="padding-left: 10%">
<?php
$id = $_GET['product_id'];
$_SESSION['user']->db_connect();
$sql = "SELECT title,small_description,full_description,characteristic FROM product WHERE product_id=".$id;
$result = mysql_query($sql);
$product = mysql_fetch_array($result);
$title = $product['title'];
$small_description = $product['small_description'];
$result1 = mysql_query("SELECT price FROM storage_item WHERE product_id=".$id);
if(@mysql_num_rows($result1))
{
$storage_item = mysql_fetch_array($result1);
$price = $storage_item['price'];
$availability = "Є в наявності";
}
else
$availability = "Немає в наявності";
echo "<tr><td rowspan='5' valign='top'><img width='256' heigth='256' src=image.php?product_id=".$id."></td>";
echo "<td><a style='font-size: 40px' href='item.php?type=".$_GET['type']."&id=".$id."'>".$title."</a></td></tr>";
echo "<tr><td style='color: grey'>Код товару: ".$id."</td></tr>";
echo "<tr><td style='font-family: serif; font-size: 25px'>".$small_description."</td></tr>";
echo "<tr><td style='font-family: serif; font-size: 25px; color: #10df10'>".$availability."</td></tr>";
if(@mysql_num_rows($result1))
{
echo "<tr><td style='font-family: serif; font-size: 45px; color: #10df10'>".$price."грн</td></tr>";
}
?>
</table>
<div class="register_div">
<?php
if(isset($_GET['error']))
{
echo "<i><font face='arial' size=+1 color='red'>";
switch($_GET['error'])
{
case 'empty_name':
echo "Введіть ім'я"; break;
case 'empty_lastname':
echo "Введіть прізвище"; break;
case 'empty_phone_number':
echo "Введіть номер телефону"; break;
case 'empty_adress':
echo "Введіть адрес"; break;
case 'incorrect_phone':
echo "Телефонний номер має містити лише 10 цийр"; break;
case 'er':
echo "Покупка не може бути здійснена"; break;
case 0:
$correct = 1; break;
default:
$correct = 0;
}
echo "</font></i>";
}
else
echo "<br>";
?>
<form action="reg.php" method="post">
<font size="4" face="arial">
<?php
if(!$correct)
{
if(strcmp($_SESSION['status'], "guest"))
{
$sql ="SELECT lastname,`name`,contact_phone,adress FROM customer WHERE customer_id=".$user->id;
$result = mysql_query($sql);
$customer = mysql_fetch_array($result);
}
echo "<br>Код товару:<br><input type='text' readonly value='".$_GET['product_id']."' class='color_text' size='50' name='product_id'>";
echo "<br>Ім'я:<br><input type='text' value='".$customer['name']."' class='color_text' size='50' name='name'>";
echo "<br>Прізвище:<br><input type='text' value='".$customer['lastname']."' class='color_text' size='50' name='lastname'>";
echo "<br>Номер телефону (лише цифри):<br><input type='text' value='".$customer['contact_phone']."' class='color_text' size='50' name='phone_number'>";
echo "<br>Адреса:<br><input type='text' value='".$customer['adress']."' class='color_text' size='50' name='adress'>";
echo "<br> <input type='submit' class='button_color' value='Підтвердити'>";
}
else
{
echo "<p style='font-style: italic; font-family: serif; color: #3333ff;'>Товар успішно замовлений.</p>";
echo "<p style='font-style: italic; font-family: serif; color: #3333ff;'>Очікуйте дзвінка від нашого менеджера.</p>";
}
?>
</font>
</form>
</div>
<?php
include_once 'site_bottom.txt';
?>
</div>
</body>
</html>
delete_row.php
<?php
require_once 'users.php';
session_start();
$user = $_SESSION['user'];
$user->db_connect();
if($_GET['customer_id'])
{
$sql = "DELETE FROM customer WHERE customer_id=".$_GET['customer_id'];
$head = "location: customer.php";
}
else if($_GET['maneger_id'])
{
$sql = "DELETE FROM maneger WHERE maneger_id=".$_GET['maneger_id'];
$head = "location: maneger.php";
}
else if($_GET['product_id'])
{
$sql = "DELETE FROM product WHERE product_id=".$_GET['product_id'];
$head = "location: product.php";
}
else if($_GET['storage_item_id'])
{
$sql = "DELETE FROM storage_item WHERE storage_item_id=".$_GET['storage_item_id'];
$head = "location: storage_item.php";
}
else if($_GET['preorder_id'])
{
$sql = "DELETE FROM preorder WHERE preorder_id=".$_GET['preorder_id'];
$head = "location: preorder.php";
}
else if($_GET['order_id'])
{
$sql = "DELETE FROM internet_shop.order WHERE order_id=".$_GET['order_id'];
$head = "location: order.php";
}
else if($_GET['user_id'])
{
$sql = "DELETE FROM internet_shop.user WHERE user_id=".$_GET['user_id'];
$head = "location: user.php";
}
$result = mysql_query($sql);
header($head);
?>
add_row.php
<?php
if(isset($_POST['storage_item_id']) && isset($_POST['contact_phone']))
{
require_once 'users.php';
$preorder_id = $_POST['preorder_id'];
$customer_id = $_POST['customer_id'];
if(!$customer_id)
$customer_id = "NULL";
$lastname = $_POST['lastname'];
$name = $_POST['name'];
$contact_phone = $_POST['contact_phone'];
$adress = $_POST['adress'];
$storage_item_id = $_POST['storage_item_id'];
$product_number = $_POST['product_number'];
$ch = new check();
$error = $ch->preorder_check($lastname, $name, $contact_phone, $adress, $storage_item_id, $product_number);
if(strlen($error))
$head = "location: preorder.php?error=".$error."";
else
{
session_start();
$user = $_SESSION['user'];
$user->db_connect();
$sql = "INSERT INTO preorder(customer_id, lastname, `name`, contact_phone, adress, storage_item_id, product_number) VALUES(".$customer_id.",'".$lastname."','".$name."','".$contact_phone."','".$adress."',".$storage_item_id.",".$product_number.")";
$result = mysql_query($sql);
$error = mysql_error();
if(strlen($error))
$head = "location: preorder.php?error=Товар%20або%20покупець%20з%20вказаним%20кодом%20не%20існують";
else
$head = "location: preorder.php";
}
}
else if($_POST['lastname'])
{
require_once 'users.php';
$lastname = $_POST['lastname'];
$name = $_POST['name'];
$contact_phone = $_POST['contact_phone'];
$adress = $_POST['adress'];
$ch = new check();
$error = $ch->customer_check($lastname, $name, $contact_phone, $adress);
if(strlen($error))
{
$head = "location: customer.php?error=".$error;
}
else
{
session_start();
$user = $_SESSION['user'];
$user->db_connect();
$sql = "INSERT INTO customer(lastname,`name`,contact_phone,adress) VALUES ('".$lastname."','".$name."','".$contact_phone."','".$adress."')";
$result = mysql_query($sql);
$head = "location: customer.php";
mysql_close();
}
}
else if($_POST['title'])
{
require_once 'users.php';
session_start();
$user = $_SESSION['user'];
$user->db_connect();
$father_id = $_POST['father_id'];
if(!$father_id)
$father_id = 0;
$title = $_POST['title'];
$small_description = $_POST['small_description'];
$full_description = $_POST['full_description'];
$characteristic = $_POST['characteristic'];
if(strlen($error))
{
$head = "location: product.php?error=".$error;
}
else
{
if(is_uploaded_file($_FILES['picture']['tmp_name']))
{
$f = fopen($_FILES['picture']['tmp_name'], "rb");
$picture = fread($f, filesize($_FILES['picture']['tmp_name']));
fclose($f);
$picture = addslashes($picture);
}
$sql = "INSERT INTO product(father_id,title,picture,small_description,full_description,characteristic) VALUES (".$father_id.",'".$title."','$picture','".$small_description."','".$full_description."','".$characteristic."')";
$result = mysql_query($sql);
$error = mysql_error();
if(strlen($error))
$head = "location: product.php?error=".$error;
else
$head = "location: product.php";
}
mysql_close();
}
else
{
require_once 'users.php';
$fullname = $_POST['fullname'];
if(!strlen($fullname))
$fullname = "NULL";
session_start();
$user = $_SESSION['user'];
$user->db_connect();
$sql = "CALL add_maneger(".$fullname.")";
mysql_query($sql);
$sql = "SELECT @message AS message";
$result = mysql_query($sql);
$message = mysql_fetch_array($result);
if(!$message['message'])
{
$sql = "INSERT INTO maneger(fullname) VALUES ('".$fullname."')";
$result = mysql_query($sql);
$sql = "SELECT maneger_id FROM maneger ORDER BY maneger_id DESC LIMIT 1";
$result = mysql_query($sql);
$id = mysql_fetch_array($result);
$id = $id['maneger_id'];
$sql = "INSERT INTO user(user_id,login,password,status) VALUES(".$id.",'".$_POST['login']."','".$_POST['password']."','maneger')";
mysql_query($sql);
$head = "location: maneger.php";
}
else
$head = "location: maneger.php?error=".$message['message'];
mysql_close();
}
if($head)
header($head);
else
header("location: admin_room.php");
?>
edit_table.php
<?php
if(isset($_GET['order_id']))
{
require_once 'users.php';
$order_id = $_GET['order_id'];
$storage_item_id = $_GET['storage_item_id'];
$customer_id = $_GET['customer_id'];
$sent = $_GET['sent'];
$product_number = $_GET['product_number'];
$payment = $_GET['payment'];
if(strlen($error))
$head = "location: order.php?error=".$error."";
else
{
session_start();
$user = $_SESSION['user'];
$user->db_connect();
$sql = "UPDATE internet_shop.order SET storage_item_id = ".$storage_item_id.", customer_id=".$customer_id.", sent=".$sent.", product_number=".$product_number.", payment='".$payment."' WHERE order_id=".$order_id;
$result = mysql_query($sql);
if(mysql_error())
$head = "location: order.php?error=".mysql_error();
else
{
$result = mysql_query("SELECT @message AS message");
$message = mysql_fetch_array($result);
$message = $message['message'];
if(strlen($message))
$head = "location: order.php?error=".$message;
else
$head = "location: order.php";
}
}
}
else if(isset($_GET['preorder_id']))
{
require_once 'users.php';
$preorder_id = $_GET['preorder_id'];
$customer_id = $_GET['customer_id'];
$lastname = $_GET['lastname'];
$name = $_GET['name'];
$contact_phone = $_GET['contact_phone'];
$adress = $_GET['adress'];
$storage_item_id = $_GET['storage_item_id'];
$product_number = $_GET['product_number'];
$ch = new check();
$error = $ch->preorder_check($lastname, $name, $contact_phone, $adress, $storage_item_id, $product_number);
if(strlen($error))
$head = "location: preorder.php?error=".$error."";
else
{
session_start();
$user = $_SESSION['user'];
$user->db_connect();
$sql = "UPDATE preorder SET customer_id=".$customer_id.", lastname='".$lastname."', `name`='".$name."', contact_phone='".$contact_phone."', adress='".$adress."', storage_item_id = ".$storage_item_id.", product_number=".$product_number." WHERE preorder_id=".$preorder_id;
$result = mysql_query($sql);
if(mysql_error())
$head = "location: preorder.php?error=Відсутній%20товар%20або%20покупець%20із%20вказаним кодом";
else
$head = "location: preorder.php";
}
}
else if(isset($_GET['customer_id']))
{
require_once 'users.php';
$customer_id = $_GET['customer_id'];
$lastname = $_GET['lastname'];
$name = $_GET['name'];
$contact_phone = $_GET['contact_phone'];
$adress = $_GET['adress'];
$ch = new check();
$error = $ch->customer_check($lastname, $name, $contact_phone, $adress);
if(strlen($error))
$head = "location: customer.php?error=".$error."";
else
{
session_start();
$user = $_SESSION['user'];
$user->db_connect();
$sql = "UPDATE customer SET lastname='".$lastname."', `name`='".$name."', contact_phone='".$contact_phone."', adress='".$adress."' WHERE customer_id=".$customer_id;
$result = mysql_query($sql);
$head = "location: customer.php";
}
}
else if($_GET['storage_item_id'])
{
require_once 'users.php';
$storage_item_id = $_GET['storage_item_id'];
$product_id = $_GET['product_id'];
$arrival_date = $_GET['arrival_date'];
$product_number = $_GET['product_number'];
$price = $_GET['price'];
$ch = new check();
$error = $ch->storage_item_check($product_id,$arrival_date,$product_number,$price);
if(strlen($error))
{
$head = "location: storage_item.php?error=".$error;
}
else
{
session_start();
$user = $_SESSION['user'];
$user->db_connect();
$sql = "UPDATE storage_item SET product_id=".$product_id.", arrival_date='".$arrival_date."', product_number=".$product_number.", price=".$price." WHERE storage_item_id=".$storage_item_id;
$result = mysql_query($sql);
$error = mysql_error();
if(strlen($error))
$head = "location: storage_item.php?error=Відсутній%20товар%20з%20вказаним%20кодом";
else
$head = "location: storage_item.php";
mysql_close();
}
}
else if($_GET['maneger_id'])
{
require_once 'users.php';
$maneger_id = $_GET['maneger_id'];
$fullname = $_GET['fullname'];
$succes_orders = $_GET['succes_orders'];
$canceled_orders = $_GET['canceled_orders'];
$ch = new check();
$error = $ch->maneger_check($fullname, $succes_orders, $canceled_orders);
if(strlen($error))
$head = "location: maneger.php?error=".$error."";
else
{
session_start();
$user = $_SESSION['user'];
$user->db_connect();
$sql = "UPDATE maneger SET fullname='".$fullname."', succes_orders=".$succes_orders.", canceled_orders=".$canceled_orders." WHERE maneger_id=".$maneger_id;
$result = mysql_query($sql);
$head = "location: maneger.php";
}
}
header($head);
?>Размещено на Allbest.ru
Подобные документы
Основні підходи до проектування баз даних. Опис сайту Інтернет-магазину, характеристика його підсистем для обробки анкет і запитів користувачів. Розробка концептуальної, інфологічної, даталогічної, фізичної моделей даних. Побудова ER-моделі в CASE-засоби.
курсовая работа [2,3 M], добавлен 01.02.2013Основні поняття та особливості розробки баз даних в Microsoft Access. Побудова бази даних магазину побутової техніки: створення таблиць та встановлення зв’язків між ними, створення запитів, форм та звітів. Охорона праці і гігієна користувача комп'ютера.
курсовая работа [2,5 M], добавлен 19.01.2010Загальна характеристика навчально-наукового комп'ютерного центру. Державні норми влаштування і обладнання кабінетів комп'ютерної техніки. Створення довідкової бази про факультет комп’ютерних систем для приймальної комісії у вигляді сайту для абітурієнтів.
отчет по практике [72,0 K], добавлен 07.07.2010Інтернет як система об'єднаних комп'ютерних мереж для зберігання і передачі інформації. Літературні джерела щодо сутності баз даних та їх функціонування. Порівняльний аналіз MySQL, Oracle та Microsoft Access. Створення бази даних за допомогою MySQL.
курсовая работа [1,5 M], добавлен 05.02.2014Розвиток комп’ютерної техніки. Основи інформатики. Класифікація персональних комп’ютерів. Складові частини інформатики. Інформація, її види та властивості. Кодування інформації. Структурна схема комп’ютера. Системи числення. Позиційна система числення.
реферат [36,0 K], добавлен 27.10.2003Стандарти технології Fast Ethernet. Перелік функцій користувачів та прав доступу. Розставлення робочих станцій та периферійної техніки у приміщенні клубу. Розрахунок трафіку мережі. Вибір й характеристики обладнання для серверів та комутуючих пристроїв.
дипломная работа [997,0 K], добавлен 23.07.2014Аналіз технологій розробки систем моніторингу і управління та різноманітності мов програмування. Створення проекту структури Інтернет-магазину, розробка бази даних, UML-діаграми та алгоритму виконання функцій додатку. Результати тестування програми.
дипломная работа [1,6 M], добавлен 08.06.2015Інтернет-магазин як веб-сайт, що рекламує товар, приймає замовлення на покупку. Процес створення програмного продукта від викладення вимог до написання коду, відладки та тестування. Потреби адміністраторів інтернет-магазину. Мова програмування сайту.
курсовая работа [1,0 M], добавлен 25.11.2010Загальне поняття про Інтернет-магазини, їх характерні особливості. Специфіка розвитку Інтернет-комерції в Україні. Оцінка та аналіз діяльності Інтернет-магазину "Rozetka", його переваги та недоліки. Проектування сайта магазину "Оfficetehnik.ua".
курсовая работа [2,7 M], добавлен 03.06.2013Економічна інформація, її види та властивості. Апаратне і програмне забезпечення ПК. Програмне забезпечення стаціонарних комп’ютерів. Комп’ютерні мережі, загальна характеристика глобальної мережі Інтернет. Напрямки використання комп’ютерної техніки.
контрольная работа [28,0 K], добавлен 06.10.2011