Jump to content

[SOLVED] Error in code


Ell20

Recommended Posts

Hey,

 

Im using part of some code I created on a previous page to help me with a new page im creating. I have changed around the variables so they respond to the correct page however I am getting an error which I dont understand:

 

An error occured in script c:\program files\easyphp1-8\www\html\events.php on line 43: mysql_fetch_assoc(): supplied argument is not a valid MySQL result resource

 

The code works on the previous page but dosent work on this one, when all I changed is the variables!!

 

$query = ("SELECT * FROM event WHERE club_id = '$club_id' ORDER BY 'date' DESC")
OR DIE(mysql_error());
$result = mysql_query($query);

//Line 43
while ($row = mysql_fetch_assoc($result)) {
$eventid = $row['event_id'];

 

Cheers for any help

 

Elliot

Link to comment
Share on other sites

try this

Read comments

<?php
//Check your connecting to the database.. (i assume thats okay)

//moved the or die to the query (date is a field so use backtick)
$query = "SELECT * FROM event WHERE club_id = '$club_id' ORDER BY `date` DESC";
$result = mysql_query($query)or die(mysql_error());

//Line 43
while ($row = mysql_fetch_assoc($result))
{
$eventid = $row['event_id'];
?>

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.