View Single Post

   
  #3 (permalink)  
Old 05-07-2008, 10:15 AM
Michael Condon
 
Posts: n/a
Default PHP Question

I have a PHP script that seems to be failing. I execute it using
window.location.href("http://www.vote.com/vote2.php"):

<?php
$link = mysql_connect('localhost', 'login', 'password');
if (!$link) {
die('Could not connect: ' . mysql_error());
}
$result = use election
if (!$result) {
die('Could not connect: ' . mysql_error());
}
$result = mysql_query("update election set Votes = Votes + 1 where
Name='TheGuy'");
if (!$result) {
$message = 'Invalid update: ' . mysql_error() . "\n";
$message .= 'Whole query: ' . $result;
die($message);

mysql_close($link);
?>

Reply With Quote