1 rizwank 1.1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 <html xmlns="http://www.w3.org/1999/xhtml">
3 <head>
4 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
5 <title>SSP Admin :: Upgrade to 1.3</title>
6 <link rel="stylesheet" href="styles/main.css" />
7 </head>
8
9 <body>
10
11 <div id="container">
12 <h1>SSPAdmin Upgrade 1.3</h1>
13 <?php
14 require_once('./inc/connect.php');
15
16
17
18 @mysql_query("ALTER TABLE $itbl CHANGE link link TEXT");
19
20 echo "<h2>Tables Altered Successfully...</h2>";
21
22 rizwank 1.1 ?>
23
24 <p>Success! The upgrade is complete. You may now delete this file from your web server and use SSPAdmin as you normally do. <a href="index.php">Dashboard</a></p>
25
26 </div>
27 </body>
28 </html>
|