05-07-2009, 01:02 AM
|
#25 (permalink)
|
|
The Acquainted
Join Date: May 2007
Location: Your G/F's Closet
Posts: 114
Thanks: 7
|
Alright, well it seems to have worked without that line :S
Final Code:
PHP Code:
<?php
if (isset($_POST['submit'])) {
// Define Variables $websitename = $_POST['websitename']; $tagline = $_POST['tagline']; $websiteurl = $_POST['websiteurl']; $contactemail = $_POST['contactemail']; // Attempt To Update $update = mysql_query("UPDATE settings SET `sitename` = '".$websitename."' WHERE `build` = '1.0a'") or die(mysql_error()); if($update) { echo "Success"; } } else { ?> <form action="" method="POST" id="settings" name="settings "> Website Name: <br /> <label class="mediumInput"> <input name="websitename" id="websitename" type="text" size="75" /> </label> <br /> <small>This will show up in the tab bar in your browser and all over the website.</small> <p>Tagline (Description): <br /> <label class="textareasmall"> <textarea name="tagline" id="tagline" rows="2" cols="5"></textarea> </label> <br /> <small>This will show up on search engines under the name and will give a basic description of your website.</small></p> <p>Website URL: <br /> <label class="mediumInput"> <input type="text" name="websiteurl" id="websiteurl" size="75"/> </label> <br /> <small>This is the URL to where you have this installed, It is recommend you do not change unless you know what you are doing.</small></p> <p>Contact Email: <br /> <label class="mediumInput"> <input name="contactemail" id="contactemail" type="text" size="75" /> </label> <br /> <small>This is where emails will be sent to when contact form is used, as well as when emails are sent out.</small></p> <p> <input name="submit" id="submit" type="submit" /> </p> </form> <?php } ?>
__________________
Real Programmers always confuse Christmas and Halloween because Oct31 == Dec25 - Andrew Rutherford
|
|
|