Hi Michael,

Try placing the following at the top of your PHP code:

ini_set('error_reporting', E_ALL | E_STRICT);
ini_set('display_errors', 'On');

What error messages do you see on your page?


On Tue, May 6, 2008 at 12:07 PM, Jerry Schwartz <[EMAIL PROTECTED]>
wrote:

> In general, if I have a PHP-generated page that produces a blank page, I
> execute the PHP code from the command line. It will probably fall over
> dead
> somewhere along the line, but you'll know if there are any syntax errors.
>
> Regards,
>
> Jerry Schwartz
> The Infoshop by Global Information Incorporated
> 195 Farmington Ave.
> Farmington, CT 06032
>
> 860.674.8796 / FAX: 860.674.8341
>
> www.the-infoshop.com
> www.giiexpress.com
> www.etudes-marche.com
>
> >-----Original Message-----
> >From: Michael Condon [mailto:[EMAIL PROTECTED]
> >Sent: Tuesday, May 06, 2008 10:39 AM
> >To: mysql@lists.mysql.com
> >Subject: 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);
> >?>
> >
> >
> >--
> >MySQL General Mailing List
> >For list archives: http://lists.mysql.com/mysql
> >To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]
> >infoshop.com
>
>
>
>
>
> --
> MySQL General Mailing List
> For list archives: http://lists.mysql.com/mysql
> To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]
>
>

Reply via email to