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 Complete Forum Thread with Replies
Related Forum Messages:
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 !
& 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 !
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 !
Updating Multiple Records
I'll try and explain my problem!! Database table : Book Table : BookWords Fields : BookWordID Word Description I want to show : The word is $word add your description $description using th code below: [PHP]$db = mysql_connect("localhost", "root",""); mysql_select_db("Books",$db); $result=mysql_query("select * from Bookwords",$db); while ($rec=mysql_fetch_array($result)){ $wordid = $rec["BookWordid"]; $description = $rec["description"]; echo "$wordid: <input type=text name=quantity[$description]><br> "; } This is ok so far. Now i want the user to be able to add the description from the form and have the db automatically updated. I've tried the different methods I've found on this forum and I cant get anything to work!!!
View Replies !
Updating Records With An Array
I'm trying to update records using values selected from a multiple selection select box. Here's the code i'm using in the update page: if (isset($_POST['team_id'])) { foreach ($_POST['team_id'] as $value) { $sql4 = "UPDATE team_members_x SET date_id = '".$_POST['date_id']."', team_id = '".$value."' WHERE date_id= '" .$_POST['date_id']."'"; $result4 = @mysql_query($sql4,$connection) or die(mysql_error()); } } This doesn't seem to update my records correctly though.
View Replies !
Updating Only Some Records Of Some Tables Of A Database
I manage a couple of mysql databases that are hosted on my server as well as at my ISP. We do update quite often some records in different tables & databases. As in South Africa, we pay per GB of traffic, complete dumping of all databases every day is excluded. I am looking at a better way of only synchronizing the records that have been modified. In every table I created, I have a date_created & a date_modified, and of course everytime there is an automatic or manual update of the data, date_modified is updated. Code:
View Replies !
Updating Multiple Records On Submit
I have a page of results generated by a query and next to each displayed record is a checkbox. On selecting the checkbox(es) and submitting the form, a column in the table will be updated. E.g. Name = "blah" Address = "blah" Status = "added" [checkbox] If checkbox is selected, the column 'Status' will be updated to a new value. Can anyone explain the concept of what I need to do so I can have a go at working it out (if my explanation makes any sense)?
View Replies !
Error In Code For Updating Records
I'm trying to update records that are stored in my db on products. what I am doing is I am clicking on an image of a product to update. When I click on a product it brings me to my admin_update2.php page and passes in the value of shopName and prodId. I can see from the url that these values are being passed through ok. However I am getting an error saying Parse error: parse error, unexpected $ in /home/c/ciaracousins/public_html/admin_update2.php on line 143 line 143 is just a blank line at the very bottom of my page. Any idea what is wrong with this?? Code:
View Replies !
Updating Multiple Records In A Recordset?
Back in my OOP/ADO days you could query the database, get a recordset object, modify any records you wanted to in your calling app, then "batch update" the recordset back to the database. Does PHP support something similar to this? For example if I have 10 records and I need to set field 'x' = a different value for each record, do I have to execute 10 queries against the database, or can I update them through the mysql_result and flush them all at once? Hope that makes sense...
View Replies !
Process To Compare Records For Updating, Is There Am Efficient Technique?
I have a large database where the records have many fields (80+) and have users periodically updating it by submitting uploads. Is there a quick and efficient manner to compare the record that is being uploaded to the one that already exists in the DB before updating? The records have over 80 fields, so stepping through every field would be painful, and why update the record if nothing has changed. Is there some binary or boolean manner to weight both the existing record against that being offered, and if they are equal then do not go through the process of uploading and importing. Any ideas welcome.
View Replies !
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 !
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 !
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 Replies !
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 !
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 !
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 !
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 !
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 !
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 !
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 !
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 !
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 !
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 !
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 !
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 !
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 !
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 !
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 !
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 !
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 !
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 !
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 !
Updating Multiple Tables In Mysql
I am trying to update a number of tables with the "if action=="update"" command on the attached page. however, when I try to run multiple updates in the same action or multiple actions for each update neither of them work.
View Replies !
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 !
Updating Mysql From Form Submit
For the change password portion: the $value variable doesn't work, if I insert $pass (which is being passed from the previous page) it works fine. Is there something wrong with: value = $pass;? Code:
View Replies !
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 !
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 !
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 !
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 !
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 !
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 !
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 !
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 !
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 !
PHP/MySQL Records Per Row
Is there any way to have the records pulled from a mysql database display like this in a table: record1 | record2 record3 | record4 etc: I've been thinking about this for about three months and have yet to come to a good solution.
View Replies !
Actkey Isn't Updating In Mysql & Password Wont Show On Link!
Actkey wont update in MySQL I am running this on a new host, I have been working on it for days now and doesnt want to work, know matter what VAR I use Also when the email is sent, when visiting the link, doesn;t want to show the password on the page Well anyone have any suggestions? PHP Code:
View Replies !
|