Skip to content
Permalink
8c5f4bbdea
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
13 lines (9 sloc) 246 Bytes
<?php
include ('config.php');
$value=$_REQUEST['notice'];
echo $value;
$sql= "UPDATE announcement SET notice='$value' WHERE a_id = 1";
$result=mysqli_query($var,$sql);
$row=mysqli_fetch_array($result);
header("Location:announcement.php");
?>