Jump to content

what is wrong with this script pls tell me


alarik149

Recommended Posts

<?php

$db = mysql_connect(host', 'championships', 'passwd')
mysql_select_db('championships', $db);
$sql = "UPDATE register SET status = 'inactive' WHERE username = 'a'";
$result = mysql_query($sql) or die(mysql_error());

?>

why dosen`t this script work?I have 1 database named championships and 1 table named register.with 2 fields 'username' and 'status'.i don`t get it.it connects to the database good but it dosen`t change anything,no errors,no nothing.why?:( pls help me
Link to comment
Share on other sites

Change:[code]$db = mysql_connect(host', 'championships', 'passwd')
mysql_select_db('championships', $db);[/code]to[code]$db = mysql_connect('host', 'championships', 'passwd') or die("MySQL Connection Error: " . mysql_error());
mysql_select_db('championships', $db) or die("Selecting database error: " . mysql_error());[/code]If theres a problem with your connection or if your database has a problem then you should recieve an message.

Also why post this in HTML Help Forum? Why not PHP Help?
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.