PHP Code:
<?php
$data = $_POST['theme'];
$userid = $_POST['uid'];
$update = $vbulletin->db->query("UPDATE userfield SET field7 ='" . $data . "' WHERE userid =" . $userid . ");
include ('/home/penguink/public_html/members/header.php');
include ('/home/penguink/public_html/members/nav.php');
print <b><center>Settings Sucessfully Saved!</center></b>;
include ('/home/penguink/public_html/members/footer.php');
?>
If you used [ PHP ] tags you would have spotted the error
In the query you don't need the
. " before the closing bracket