php - switch xampp version from 1.6.8 to xampp 1.8.3 error -
php - switch xampp version from 1.6.8 to xampp 1.8.3 error -
i made website using xampp version 1.6.8 , install new version of xampp 1.8.3 login code worked on 1.6.8 doesnt work on 1.8.3.
the error
parse error: syntax error, unexpected end of file in c:\xampp\htdocs\karimunjawa\admin\ceklogin.php on line 61
the line 61 is
</html>
ceklogin.php
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <title>login</title> <?php //session_start(); include "../include/koneksi.inc"; if(isset($_post['login'])) { $username = $_post['username']; $password = $_post['password']; $sql = mysql_query("select * admin username='$username' && password='$password'"); $num = mysql_num_rows($sql); if($num==1) { // login benar // //session_register("admin"); //$_session['username'] = $username; //$_session['password'] = $password; ?><script language="javascript">alert('anda berhasil login... selamat datang <?php echo $_session['username'] ?>..!!' ); document.location='adminfiles/'</script><? } else { // jika login salah ?><script language="javascript">alert('username atau password anda salah'); document.location='index.php'</script><? } } ?> <link rel="stylesheet" type="text/css" href="style.css" /> <style type="text/css"> <!-- .style2 {color: #000000} --> </style> </head> <body> <div class="container"> <form action="" name="login" method="post"> <table width="279" height="110" border="0" align="center" cellspacing="0px"> <tr> <td height="26" align="center" bgcolor="#993300"> <h3> login administrator </h3> </td> </tr> <tr> <td height="32" align="center" bgcolor="#ffffff"><span class="style2">username atau password salah!!</span></td> </tr> <tr> <td height="37" align="center" bgcolor="#ffffff"><a href="index.php"> ulangi login </a> </td> </tr> <tr> <td align="center" bgcolor="#993300"> </td> </tr> </table> </form> </div> </body> </html>
please help me thanks
php website xampp
Comments
Post a Comment