Jump to content

Mysql UPDATE will not work


ryanfilard

Recommended Posts

I am trying to update a mysql field.

 

I am using this php code all the login info is right and it does not work

Table Name: camera

Field I Want To Change: public1

 

//Connect To Database
$db_host = "localhost";
$db_name = "mydbname";
$username = "myusername";
$password = "mypassword";

mysql_connect($db_host,$username,$password);
mysql_select_db($db_name);
$result = mysql_query("UPDATE camera SET public1='2' WHERE cwuser='$user'");
?>

Link to comment
https://forums.phpfreaks.com/topic/235219-mysql-update-will-not-work/
Share on other sites

I have checked this here is the full page code

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>PRIVATE | CWUFORUM.COM</title>
</head>
<?php
  //username
  $useah = $_SESSION['MM_Username'];
  $idfree = $_GET['camid3'];
//database
$db_host = "localhost";
$db_name = "mydb";
$username = "myuser";
$password = "mypass";
//connect
mysql_connect($db_host,$username,$password);
mysql_select_db($db_name);
//Camera View Link
?>
<?PHP
$result = mysql_query("UPDATE camera SET public1='1' WHERE cwuser='$user'");
?>
<body>
<p>Your camera has been made private!</p>
<p><a href="index.php">Back</a></p>
</body>
</html>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.