Updating To Mysql
I'm stuck with a problem that i cant fix or have a clue what might be wrong. I have a script installed on my site and everything works fine but the update process. Users can open new account and it all gets recorded in the database but once they register and then they want to update their account and click on submit it looks like it goes throught but it does not. Nothing gets replaced in the database and the same info is still showing.
View Complete Forum Thread with Replies
Sponsored Links:
Related Messages:
Updating MySQL With PHP
The page I want to update is similar to "http:www.hospiceslo.org/events.php" (read only). On my update page I've got the same table as a FORM where the client can make changes to the fields. The problem I'm having is updating the MySQL data base with the content of the form. I have no clue and would like to know where to start. Can I get some pointers to references or examples,
View Replies !
View Related
Updating MySQL
I work at a Middle School and I am developing an employee portal for our faculty to access. I am trying to create a computer lab sign up that will list all the dates and class periods available and will give them the option of selecting their userid from a drop down menu in order to reserve the lab for that period. We have alot of tech unsavy people so it has to be very simple. All I want in the drop down is the word 'Available' and their User ID (which will reserve the lab). Once the lab is reserved all I want is for their user id to be displayed instead of the drop down menu in order to indicate the reservation. I have attached the full code in a text file.
View Replies !
View Related
PHP MySQL Updating Table Row
I have a small database of books that a client can add, search and edit (hopefully) books; all online (something very simple). So far I've been successful in creating the adding of books and searching and retrieving the info in fields to edit; but I haven't been able to execute the edits. Here's the script I have to retrieve the database info and place them in the fields to edit (I didn't copy all the mysql connection script, it works fine): PHP Code:
View Replies !
View Related
JavaScript/PHP - Updating MySQL
i've got a form that runs a PHP script, when the user completes the database is updated and a image is shown in png format (created using GD Library). The problem with this is that I cannot add any buttons on the page and there is just an image. So I thought it would be a good idea if I could use some sort of javascript to open a smaller window so that it was only big enough for the image to appear and still have the form open in the background. Using something along the lines of: Code: <a href="http://www.a.com/show_poll.php" onclick="window.open(this.href,'friend','top=200,left=400,width=300,height=400'); return false;" onkeypress="window.open(this.href,'friend','top=200,left=400,width=300,height=400'); return false;" title="Opens a new window! [ALT + F]" accesskey="f"> <img src="images/emailafriend.jpg"/></a> Problem when I implemented this was that the database was never updated, instead it just opened the page. Here is my current code using the include() method, which is not suffiecient for my needs.
View Replies !
View Related
Updating A Row In Mysql Through A Form
I have been working on trying to not only nicely display mysql data, but also to update three fields in a database record through the php page displayed, by pressing a "Change" button next to the record. The three fields that are updatable would be "survey", "checkout", and "paid" in the table users_survey. They are tinyint(1) fields that are either 1 or 0. I have them displayed on the page as checkboxes in a form. I would like to be able to chek or uncheck these boxes, followed by pressing the "change" button next to the record, and have the record update with the new values (either 1 or 0). I am not really sure if I am approaching this correctly, but here's what I have written so far: PHP Code:
View Replies !
View Related
Updating PHP/mySql Versions
I use something called PHP Triad to provide a local PHP/mySql environment for test purposes, but obviously its PHP and mySql versions are out of date now (well, they're not the newest and don't support everything I want). How would I go about updating specifically the PHP or mySql? I'm aware you can download each of these but would they just slot right in to my existing directories, or would I need to re-install my whole set-up and get the latest Triad? What would be involved in replacing PHP/mySql- just stick it in the right folders and overwrite the old .ini file?
View Replies !
View Related
Updating Substrings In Mysql
how does one go about updating a substring in mysql e.g. I want to change all occurences of Gmbh to GMBH within a field string. BMW gmbh BMW Gmbh Mercedes Gmbh Joe Blogg Gmbh & Mercedes Ltd get changed to BMW GMBH BMW GMBH Mercedes GMBH Joe Blogg GMBH & Mercedes Ltd I know how to do this in PHP, but is there a way of doing it in MySQL natively?
View Replies !
View Related
Updating A Field In A MySQL Db
I am having trouble updating a background_id field (integer type) in a MySQL database. What I'm trying to do is use the associated background ID (in the background table) of the background that is selected by the user to assign its value to the background_id field in the member table. PHP code:
View Replies !
View Related
UPDATING Null Into MySQL
I'd like to UPDATE a datetime field ONLY IF the database holds "" null already. This works using the checkbox. However, if I do not tick the checkbox, then it tries to update the datetime field in the database with "" null. This gives the error: Error: Incorrect datetime value: '' for column 'Started' at row 1 Of course it is correct, "" is not a correct datetime value. Does anyone know how I can simply get it to do nothing if the 'Started' box is not checked? Code:
View Replies !
View Related
Php / Mysql - Updating Issues
I have a custom shopping cart db that has a product table, category table and a producttocategory table. The product table has a ProductID (auto_increment) The category table has a CategoryID (auto_increment) and the producttocategory table has a ProductID and a CategoryID, this is so products can appear in multiple categories. It also has a ProductToCategoryID (auto_increment) I have also begun creating and Admin site, I have created the "Add a Product" page, this allows the user to select multiple categories from a list of available categories and when "Saved" updates the producttocategory table. The problem I am having is with the "Edit a Product" page. When they edit a product they see the current list of categories the product currently belongs to, and they can "Add" or "Delete" any of these, but the problem I find is that to accurately know if a category has been added or deleted is to, everytime the "Save" button is clicked, delete all the entries for this product from the producttocategory table and re add them... most times a product is edited the categories wouldnt be changed, but I still have to perform this routine to make sure... so if a product is edited often I am rapidly going through ProductToCategoryID's... now I could just set the ProductToCategoryID data type to be int or larger, but this seems wasteful... my question is... IS THERE A BETTER WAY???
View Replies !
View Related
Updating Mysql In WHILE Statement.
What I'm trying to do, is if a condition is met, then update the mysql db. So I have the following: $server_date = date('U'); $result = mysql_query("SELECT * FROM article WHERE status LIKE 'notlive' AND date>0"); while($row = mysql_fetch_array($result))  {  if ($server_date >= $row['date']) {  echo "Changed<BR>";  $query = "UPDATE article SET status = 'live' WHERE status='notlive'";  mysql_fetch_array($query);}  } I know the condition is met since it displays "Changed" twice, but the UPDATe doesn't appear to go through. Am I able to send an UPDATE in the WHILE statement?
View Replies !
View Related
Updating Mysql With Checkboxes
I need to display records from a query of the database using PHP. Each of the displayed records will have a checkbox. When a user selects ( could be more than one) checkbox and clicks the "Submit" button, ALL OF THOSE SELECTED RECORDS will need to be updated in the database with some new field value. Any ideas?
View Replies !
View Related
Updating Mysql Array
If I had a page showing lots of different types of vegetables and each vegetable had a unique id. How would I allow logged in user "David" to click a button next to "Cabbage" and that would add the unique id for cabbage to David's profile? I would like David's vegetable profile to be in this format: 134,165,45,24 where each value is different vegetable that he has bookmarked, and each time he visits he can add to (or delete from) his vegetable bookmarks. I am using MySQL and it is the array storage and manipulation that I am stuck with. The main database and the user registration is all in place.
View Replies !
View Related
Updating Values In MySQL
I just don't know where to begin to search for the answer to my problem. Below is the code that I have written so far. it works just as it should, the problem I am having is that I want to be able to update a value associated with the data that I am pulling from the database. how can I make a second column in my table that has a input box for each row returned? I think if I can get that part figured out I can work out the rest of the code to actually update the information. I just cant seem to figure out a way around this issue so that I can get to the next part of the code. Code:
View Replies !
View Related
Updating A Mysql Database
It turns out that there are two folders on my schools webserver we can upload to. One is php enabled, one is not. I was simply putting my php scripts in the wrong place.) For a school project, I'm making something on an online movie database. Its got a "client" side where the users can browse the movies in the database, then it has an admin page where whoever has access can add movies, update them, delete them, etc. Code:
View Replies !
View Related
Updating Mysql Records
I have programmed the code to display the information of a particular person in the form so that he/she can change his/her details in the form and hence update his/her records.I have tried with the following code.It displays the form with the previous data. But when I submit,it blanks the fields (excepting the name,surname and dob which I have blocked from making any correction).The remaining 7 fields become blank with the last field's (ExamsPending) value to be zero. Code:
View Replies !
View Related
Updating A Record In A MySQL DB
Maybe this is where i am going wrong, but I am using dreamweaver for this form. Right, made a form to insert a record into a mysql db. this works fine, no problem here. I then copied this form, and then modified it to an update form. The main difference is that that form text boxes are pre-populated from the database, thus allowing easy modifications. however, the box where I browse for the image is empty Code:
View Replies !
View Related
Mysql Updating Various Tables
The problem is that the statement needs to work no matter what table is being worked on as any table must be able to be processed by the same page. The problem is that I can't use $_GET['field_name'] because I dont know what the field name is going to be. Also I do not know what field is going to be the primary key so I don't know how to get the 'where' statement to work properly.
View Replies !
View Related
MySql Updating Time
I update base: mysql_query("UPDATE armoury SET number = Ƈ' WHERE id = '".$fdatabase[id]."'") or die(mysql_error()); And then i read number: echo(mysql_fetch_array(mysql_query("SELECT number FROM armoury WHERE id = '$fdatabase[id]'"))); //results 0.
View Replies !
View Related
Updating A Record In A Mysql Database
I am sorry if this is a simple oversight, but I have been struggling for many hours over something which seems dead simple. I need to update a record in a table with more info. I am using the code below which soen't give me any errors but nothing happens. include("link.inc"); $db=connect_db(); $db_name=db_name(); mysql_select_db($db_name,$db); $sql="UPDATE data SET age='age',live='live',whatdo='whatdo',drinkalcohol='drinkalcohol',takedrugs='takedrugs',firstdrug='f irstdrug',seconddrug='seconddrug',medicine='medicine',alcohol='alcohol' WHERE id='$id'"; $result=mysql_query($sql,$db);
View Replies !
View Related
Sessions And Updating MySQL Rows?
I've began constructing my dynamic website with PHP and MySQL, and I've created my user table. In that table is a column called 'keystones' and it's almost how many 'credits' a user has accumulated through the visit. (Every time a user discovers a secret or finds 'keys' to open doors, they are awarded keystones.) Now I have stored all the users in a table, and I'm using sessions for login method. However, I have a problem. Since I'm using sessions, when the user logs in, it defines the session variables. Those STAY constant every time a user logs in, so if a user accumulates keystones, and it's updated in the database, the SESSION variables won't reflect the change. Since it would be a pain to tell the users to log out/login again to see the change in keystones, how would I go about making that session variable dynamic across pages? Should I 'redefine' that variable every time a user goes to another page? Would that include making a SQL query such as this: Code: SELECT keystones FROM users WHERE user_id='$_SESSION['user_id']'' at the beginning of every page?
View Replies !
View Related
Updating Multiple Rows (MySQL)
I have a piece of code which works perfectly when I want to insert multiple rows in a MySQL table. I am storing links in one table, categories for these links in another table and a link_category table (Id, LinkId, CategoryId) to attach one or more categories to the links. The $AddCatId (array) comes from a form where the user can select one or more categories for a link. PHP Code:
View Replies !
View Related
Problems Updating Records In MySQL With PHP
Sorry to ask what is probably a simple answer, but I am having problems updating a table/database from a PHP/ PHTML file. I can Read From the Table, I can Insert into Table/Database, But not update. Here is a copy of the script I am using. I do not know what version of MySQL my host is running nor do I have Shell Access to it. I would like to setup a script so my website users can update thier records without my intervention. Also you may send replies to stevennyoung@yahoo.com Begin Script <?php $db = mysql_connect("localhost", "username", "password"); mysql_select_db("databasename",$db); if ($id) { if ($submit) { $sql = "UPDATE tablename SET EMail='$EMail',Username='$Username',Password='$Pas sword',Item= '$Item',Price='$Price',URL='$URL' WHERE Username='$Username'"; $result = mysql_query($sql); echo "table Updated."; } else { // query the DB $sql = "SELECT * FROM tablename WHERE Username='$Username'"; $result = mysql_query($sql); $myrow = mysql_fetch_array($result); ?> <form method="post" action="<?php echo $PHP_SELF?>"> e-Mail Address:<input type="Text" name="EMail" value="<?php echo $myrow["EMail"] ?>"><br> Username:<input type="Text" name="Username" value="<?php echo $myrow["Username"] ?>"><br> Password:<input type="Text" name="Password" value="<?php echo $myrow["Password"] ?>"><br> Item:<input type="Text" name="Item" value="<?php echo $myrow["Item"] ?>"><br> Price:<input type="Text" name="Price" value="<?php echo $myrow["Price"] ?>"><br> Item URL:<input type="Text" name="URL" value="<?php echo $myrow["URL"] ?>"><br> <input type="Submit" name="Update" value="Update table"> </form> <?php } } else { // display list of articles $result = mysql_query("SELECT * FROM tablename",$db); while ($myrow = mysql_fetch_array($result)) { printf("<a href="%s?Username=%s">%s %s</a><br> ", $PHP_SELF, $myrow["Username"], $myrow["Item"], $myrow ["URL"]); } } // Close DB Connection mysql_close() ?>
View Replies !
View Related
What Is Wrong With My PHP Script For MySQL Updating?
my PHP aims to update a MySQL database by selecting record one by one and modify then save. Here are my PHP, but I found that it doesnt work as it supposed to be, for example, when Record (i) is shown and modified, the change will come to Record (i+1). <?php $connect = mysql_connect("andy","kiong","Password")or die("Could not connect : " . mysql_error()); ; mysql_select_db("kiong_userinfo",$connect)or die("Could not connect : " . mysql_error()); $result = mysql_query("SELECT * FROM putonServer where id2=1", $connect); printf("%s<br> ", mysql_result($result,0,"body")); ?> <table width="556" height="70" border="0" align="center"> <tr> <td width="59" height="66"> </td> </tr> </table> <p align="center"> <?php $this_id=mysql_result($result,0,"id"); $next_id=$this_id+1; $cat=mysql_result($result,0,"category"); $newline = "<br />"; if($cat==1) { echo "Process".$newline; echo $newline; }elseif($cat==2) { echo "Product".$newline; echo $newline; }else{ echo "People".$newline; echo $newline; } $ori=mysql_result($result,0,"orientation"); echo "$ori"; ?>
View Replies !
View Related
Script Not Updating Mysql Database
I have recently posted about a broader issue but now I have fixed part of the big issue. I am still having some trouble understanding why my script is not updating my database. If anyone can help I really do appreciate it. I filled in the Id and username variables with text for debugging purposes. The 'id' field in my database is set to auto increment and the 'username' is pulled from the user's login name. Code:
View Replies !
View Related
Updating User Information Php/mySQL
im fairly new to the incorporation of php and mySQL and i am looking to start off by making a user info database that will hold contact information as well as a username and password field. below is the code for the site i want to use to allow the user to "update" their info. My problem is when i click the link to "edit" info after the user has logged in, the page displays blank. Code:
View Replies !
View Related
& MySQL - Updating & Deleting Records
I am very new to MySQL and have built myself a small database for website update requests. The thing is Instead of having a "enter the record id # and press edit" I want to have a small edit icon at the end of each record I am displaying in a table. I've got the table data box setup at the end of the record and this is what I put in it: Code:
View Replies !
View Related
Apostrophe Problem In Updating MYSQL
I have a form that updates a record in my MYSQL database. It works great for all the records except the records which have an apostrophe in one of the fields (it's a database containing records of books and some titles have apaostophes). I tried using a? as a placeholder in the INSERT query and then made an array like this: INSERT into db (title, author, year) Values (?,?,?), array($_POST['title'],($_POST['author'],($_POST['year']); It works if I just have one place holder but as soon as I add more it doesn't. Also is there another way of correcting the apostrophe problem?
View Replies !
View Related
Updating Word/excel Thru Mysql
I'm working on a project which has all data in a mysql database. i have set up forms for various inputs etc and all is well. Now comes a problem - atleast for me. There are some files in excel and word and these are updated by some users when an event takes place as under: a. user visits a customer site to check work in progress. b. he prepares a pre -install report which is an excel file. Code:
View Replies !
View Related
Updating Multiple Form Values To MySQL
i am building a content management system for my employer's Web site, which is a daily newspaper. haven't had too much trouble learning PHP up to this point, but I have a problem now that I am finding difficult to figure out. any help would be much appreciated. I have two MySQL tables for a Poll on our site, one named PollQuestions and one named PollAnswers. I am trying to build an administration form that will allow the user to pull up both the question and answers for any given poll and edit them if they need to. I haven't had a problem with the Poll Question, but with the Poll Answers, I am unsure how I can pull each Poll Answer into a text field and update all of them in one query based on an ID field for the answers. In other words, I have each answer pulling into the form from the database and for each answer, i have a hidden field that stores that particular answer's ID number. So how do I update all of the answers in one query based on that particular answer's ID number? I have written the following code, but it does not work. Any help would be much appreciated. For the form itself, here is the code for the Answer text fields:
View Replies !
View Related
Updating A Slew Of Values Into MySQL From A Form
I'm working on a script to edit stored values which I will call on to change the appearence of certain parts of my website. I figured that I can store default values in MySQL, echo those values into a form, then edit whichever values I want, and have it updated in MySQL. However, I can't get the updating into MySQL part to work. The form displays everything the way it should, including the current values in the database. When I try updating it, instead of using the new value, it instead inserts blank space. I *think* it's because of my query, but I don't see why it shouldn't work, since I did define $values = $_POST['values'] at the top of the script. I don't know if it's my logic that's off, or my code, but I would appreciate any assistance. PHP Code:
View Replies !
View Related
Updating Multiple Rows In A Table In Mysql
ok so im making this form that updates multiple rows in the mysql database but the thing is that the number of rows is a variable so once it may be one row once it may be 31 rows. is there anyway i can do this using a while loop? or even is there a way to do this period?
View Replies !
View Related
Error Updating Html Text In A Mysql Database
I have a field in my database which needs to contain html code (for formatting of text, lists, and links). I can successfully add the data and view it on a webpage, but I cannot figure out how to edit it. I have read about magicquotes, htmlspecialchars, addslashes, etc, and I have tried various combinations of these without any luck. My code currently looks like this: $id = $_POST['id']; $myhtml = $_POST['myhtml']; if (!get_magic_quotes_gpc()) { $myhtml = addslashes($myhtml); } $query = ("UPDATE products SET myhtml="$myhtml" where id="$id""); $result = mysql_query($query); And the error is: You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'myhtml=" Can anyone help?! or advise where I might be going wrong?
View Replies !
View Related
Retrieving MySQL Database Data & Updating On The Same Form...
I have managed to perform the following: 1. Adding Data to a MySQL Database. 2. Retrieving/Viewing Data from MySQL Database. I currently need to be able to perform the following: 1. While I view Data coming from the MySQL Database, I can currently edit the data on the same "view" form. Then I want to be able to save the changed data back to the Database. The problem is that when finished editing the data, the "update" button does NOT work... I want to be able to put/save the altered data back to the MySQL Database. And the button I have created does NOT work... Here is the code I use to enter NEW data to the MySQL Database: Code:
View Replies !
View Related
Updating The SQL Key Value
In an application I am writing the user can define a series of steps to be followed. I save them in a sql database using the field "order" (a smallint) as the primary key. (there are in the range of 20 steps) On the admin page the steps are listed, in "order" order and the user can create new steps and assign an order and all is well. The problem may come in using a renumber function which should take the steps in their current order and reassign the "order" key, assigning each set an "order" that is the prior "order" + 10. In other databases I have worked with this is a major pain because as soon as you save a record the order may change. OTOH, in mysql it appears that if you do a select for the whole table you have them all in memory and can change the value of the field "order" without having to worry about getting that record again and then save the whole table.
View Replies !
View Related
Row Not Updating?
Currently, when I select "Decline", it shows as if its okay, and there is no error. But when I look at my database row, it does not update the column 'deleteupload' to 'yes'. Code:
View Replies !
View Related
SQL Not Updating
Im sure im making a simple mistake can someone tell me why this code will not update my SQL, it shos the message that it completed but it never changes SQL Statement below: if($Submit == "Save"){ $titleedit = $_POST['titleedit']; $lengthedit = $_POST['lengthedit']; $priceedit = $_POST['priceedit']; $descedit = $_POST['descedit']; $theedit = $_POST['theedit']; $sql = "UPDATE excursions SET exc_title='$titleedit', exc_length='$lengthedit', exc_price='$priceedit', exc_desc='$descedit' WHERE exc_id='48'"; mysql_query("$sql") or die(mysql_error()); echo "Excursion Updated<br><br>"; }
View Replies !
View Related
Updating A Particular Row
Is it possible for me to increase the number value in a column of a particular row in my mysql database by a specific value? mysql_query("UPDATE users SET userspace += '50' WHERE username = 'username'"); Is that possible? To simply increase like that? If not, how can I?
View Replies !
View Related
Updating
now have the script. the only bit that is not updating is the wages part from the credits. <? include('config.php'); $wagebill = ($stat[employees]*$stat[wages]); error_reporting(E_ALL) ; ini_set('display_errors', 1); mysql_query('UPDATE players SET drugs = drugs + (drugfact*300), dpayout = (drugfact*300), steaks = steaks + (steakhouse*300), spayout = (steakhouse*300);'); mysql_query('UPDATE players SET credits=credits-($wagebill)'); ?>
View Replies !
View Related
Updating Php.ini
Alright, so when I run a php script that has an error, I get a blank white screen. I'd like to have it tell me my errors, at least in the dev phase. I tried updating my php.ini file but the changes did take but I still get a blank white page. I am on a Mac so I have Terminal built in, and can login to my server as root. I did vi /etc/php.ini and pulled the file up, found error_reporting = E_ALL which I assume is correct to display errors, and also display_errors = On but I still cannot see my errors. Is it that they are fatal errors and totally crash my script? The script in question is a huge if statement with tons of select and update statements, but I have pored over the code for two days and cannot find an error. Is there another way to fix my php.ini file, a function I can run at the top of my script to display errors or a 3rd party app that will parse errors out of my script?
View Replies !
View Related
Updating Php
i can use a command such as -> PHP Code: window.document.demo.test.value = "updated1"; to update a text field in a form like -> PHP Code: <input name="test" type="text"> However i want to start using array fields like -> PHP Code: <input name="test[]" type="text">
View Replies !
View Related
Updating Page
I've done a large PHP script which can take a long time to run. This script has to have an echo every so often so that it doesn't time out. I've been looking for quite a while for a way of updating a PHP page so that the text will actually be shown on the screen as it outputs rather than when all the script has finished. Working on another project using ASP (JavaScript) I found the following out: <% Response.Buffer=True %> <% Response.Flush %> which actually updates the page. Is there anyway of implementing this in PHP or something like it.
View Replies !
View Related
Updating Records
I am know to PHP i've been tring to do this **** for days now could someone PLEASE help me. Ok Im tring make an admin page where user can update multiple records at same time using checkboxes.Im using email as primary key. Here is the code **form page** <form action="update.php" method="post"> <input type="submit" name="submit" value="Select First 10 Names"> </form> **update.php** <?php if ($submit =="Select First 10 Names") { ?> <form method="post" action="<?php echo $PHP_SELF; ?>"> <hr size=3> <?php $query = mysql_query("select * from Names order by Last_Name limit 10"); while($row = mysql_fetch_array($query)) { $first_name= $row["First_Name"]; $middle_name = $row["Middle_Name"]; $last_name = $row["Last_Name"]; $email = $row["Email"]; $photo=$row["Photo"]; ?> <table width="100%" border="0" > <tr> <td align=right width=50%> <?php echo "First Name: <input type=text name="first_name" size="30" maxlength="40"value="$first_name" ><br> "; echo "Middle Name: <input type=text name="middle_name" size="30" maxlength="40" value="$middle_name"><br> "; echo "Last Name: <input type=text name="last_name" size="30" maxlength="40" value="$last_name"><br><br> "; echo "Email: <input type=text name="email" size="30" maxlength="40" value="$email" readonly><br><br> "; echo "Photo: <input type=text name="photo" size="30" maxlength="70" value="$photo"><br><br> "; echo "<input type="checkbox" name="email[]" value="$email"><b>Update?</b> "; ?> </td> <td align=right width=50%> <?php echo "$photo"; ?> </td> </tr> </table> <hr size=3><br> <?php } ?> <input type=submit name=submit value="Update Enteries"> <input type=reset> </form> <?php } if ($submit=="Update Enteries") { if (is_array($email)) { while (list($key,$value) = each($email)) { $query= mysql_query ("update Names set First_Name = '$first_name' Middle_Name= '$middle_name' Last_Name='$last_name' where Email='$value'"); } } } ?>
View Replies !
View Related
|