Я пытаюсь переписать код в JSP, но я мог сделать только ту часть, где он проверяет код подключен к базе данных.
<?php
$connect=mysql_connect("localhost","root","");
if (!$connect) {
die("Cannot connect to the server");
}
$db=mysql_select_db("payroll",$connect);
if (!$db) {
die("Cannot read the database");
}
if (isset($_POST['delete'])) {
if(isset($_POST['employee'])) {
mysql_query("DELETE FROM employee WHERE EMP_ID=\"".$_POST['employee']."\"");
}
header("Location:manage.php");
}
?>
это где я могу перевести на
<%
Пользователь currentUser = null;
Integer currentUserId = null;
if(session.getAttribute("name") == null) {
response.sendRedirect(request.getContextPath() + "/normal/login.jsp?previousPageURL=user/edit_profile.jsp");
} else {
currentUser = (name)session.getAttribute("name");
currentUserId = currentname.getId();
}
%>
Class.forName("com.mysql.jdbc.Driver");
Connection con;
con =DriverManager.getConnection("jdbc:mysql://localhost/payroll", dbuser, dbpassword);
PreparedStatement stmt = con.prepareStatement("DELETE FROM employee WHERE EMP_ID="+request.getParameter("employee"));
stmt.execute();
stmt.close();
Других решений пока нет …