<title>Letzlink 1.4.1</title> <!-- Letzlink Release 1.4.1 (C) Jean Schumacher 2007 - 2011. This free software is released under CC GNU - GPL2 ( General Public License ) Your are completely free to use it, alter or change it or to distribute it as log you are in accordance with the GNU - GPL2 license which is distributed along with this software. More information can be found at http://www.creativecommons.org/licenses/GPL/2.0 Attention: The software was mainly developed to be run on localhost or LAN Systems. If you run it on public accessible areas, this may be a security risk, especially if the software is not protected with appropriate software to limit access. Please report any bug to hide@address.com --> <link rel= 'stylesheet' type='text/css' href='../style.css'> </head> <?php $description = $_POST['description']; $url = $_POST['url']; $category = $_POST['category']; $username = $_POST['username']; $password = $_POST['password']; $text = $_POST['text']; ?> <body> <div style="margin-left: 180px;"> <br> <br> <table align="left" width="420"> <tr> <td> <h2 align="center"> Modify Record</h2> <form action ="../process2.php" method = "POST"> <table width="100%" cellspacing="4"> <tr> <td align="right">Description:</td> <td><input type ="text" name ="description" maxlength ="100" style ="width:350px;" disabled value="<?php print $description; ?>"></td> </tr> <tr> <td align="right">URL:</td> <td><input type ="text" name ="url" maxlength ="100" value="<?php print $url; ?>" style ="width:350px;"></td> </tr> <tr> <td align="right">Category:</td> <td><input type="text" name ="category" style ="width:100px;" disabled value="<?php print $category; ?>"> </td> </tr> <tr> <td align="right">Username:</td> <td><input type ="text" name ="username" maxlength ="25" style ="width:150px;" value="<?php print $username; ?>"></td> </tr> <tr> <td align="right">Password:</td> <td><input type ="password" name ="password" maxlength ="25" style ="width:150px;" value="<?php print $password; ?>"></td> </tr> <tr> <td align="right">Info:</td> <td><textarea name ="text" cols="42" rows="10" wrap= "physical"><?php print $text; ?></textarea></td> </tr> <tr> <td colspan ="2" align="center"><input type="submit" value="Send"> <input type="reset" value="Reset"></td> </tr> <tr> <td colspan="2"><input type ="text" name ="description" maxlength ="100" style ="width:350px; visibility:hidden;" value="<?php print $description; ?>"></td> </tr> <tr> <td colspan="2"><input type="text" name ="category" style ="width:100px; visibility:hidden;" value="<?php print $category; ?>"> </td> </tr> </table> </form> </td> </tr> </table>