Jump to content

error maybe its not sending to the db


BillyBoB

Recommended Posts

[code]
<?php
if($_POST[submit])
{
$query = mysql_query("SELECT * from profile where username = '$_GET[user]'") or die(mysql_error);
$profile = mysql_fetch_array($query);
$aim = $_POST[aim];
$msn = $_POST[msn];
$yim = $_POST[yim];
$website = $_POST[website];
$gender = $_POST[gender];
$age = $_POST[age];
$location = $_POST[location];
if($aim==NULL|$msn==NULL|$yim==NULL|$website==NULL|$gender==NULL|$age==NULL|$location==NULL)
{
echo("You have left a spot empty!");
}else{
$query = mysql_query("UPDATE profile SET (aim = '$aim',msn = '$msn',yim = '$yim',website = '$website',gender = '$gender',age = '$age',location = '$location') WHERE username = '$logged[username]'");
}
}
?>
[/code]

i try to use this but it does't work can u help me?
Link to comment
https://forums.phpfreaks.com/topic/14559-error-maybe-its-not-sending-to-the-db/
Share on other sites

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.