Jump to content

Getting a strange error from my query...


Jim R

Recommended Posts

 

Quote

Unknown column 'Carmel' in 'where clause'
Warning: mysqli_fetch_assoc() expects parameter 1 to be mysqli_result, boolean given in /home/csi/public_html/resources/preview1920/sectional.php on line 19

 

Passing variable via the URL:

https://www.courtsideindiana.com/season-preview/19-20/sectional1920/?sectional=8&school=Carmel

Sectional = 8

School = Carmel

Before I added the &school=Carmel, it was working, just echoing the total list of schools in the table.

$sectional = $_GET['sectional'];
$school = $_GET['school'];

echo $school;

// Query

$query = "SELECT * FROM a_schools WHERE sectional=".$sectional." AND school=" . $school ."";


$results = mysqli_query($con,$query);
echo mysqli_error($con);
while($row = mysqli_fetch_assoc($results)) {

echo $row['school'] . '<br>';

}

 

Link to comment
Share on other sites

This is sort of combining the other topic (coaches/schools) that you’re helping me with. 

 

I have a schools table and a coach table, and I’m trying to print the school name, followed by the head coach’s name.  Right now, it’s not printing the coach’s name.  


// Getting variables out of the URL

$sectional = $_GET['sectional'];
$school = $_GET['school'];
$school_lower = strtolower($school);

// Query

$query = "SELECT * FROM a_schools as s
join a_coach as c

WHERE sectional='" . $sectional ."'  AND school='" . $school . "'
AND c.schoolID = s.ID
 ";


$results = mysqli_query($con,$query);
echo mysqli_error($con);
while($row = mysqli_fetch_assoc($results)) {

echo '<img src="/resources/preview1920/images/'. $school_lower .'/'. $school_lower .'-ad-1.png">';


echo '<div class="wrapper">';

	echo '<div class="school_info">';
	
	echo '<img src="/images/schoolLogo/'.$school.'.png">';
	echo '<div class="school_name">' . $row['school'] . ' ' . $row['nickname'] .'</div>';
	echo '<div>Head Coach: ' . $row['c.coachFirst'] . ' ' . $row['c.coachLast'] .'</div>';

B60D3615-433F-406C-9A6B-E62C6FD174E9.thumb.jpeg.91313387a675473115bb70f93b16b408.jpeg

74385262-B306-471B-AACA-C93FC2F17190.thumb.jpeg.b621971e5de247f78a71a602a1d219df.jpeg

Edited by Jim R
Link to comment
Share on other sites

Good job - you've figured out the syntax issues with your query (I really do mean that sincerely). Now, before anything else, please look into prepared statements as you're using $_GET variables directly in a MySQL query. Then please google the performance pitfalls of running a 'SELECT * ...' query.

As for the coach name, the PHP array from a MySQL query has no idea what table each index of each row in the resultset came from, so the MySQL aliases you set up don't help the PHP output. In other words, the array indexes 'c.coachFirst' and 'c.coachLast' don't exist. The array indexes 'coachtFirst' and 'coachLast' should exist, however.

Edited by maxxd
missed a quote
  • Like 1
Link to comment
Share on other sites

(I’m just using SELECT * right now because I’m just now starting this project and don’t want to have to change that line each time I add or subtract a column.) 

 

I removed the aliases in the output, and it worked, but I don’t really know why.  So thank you!

In setting up the aliases, I thought I would be told the opposite, that I wasn’t using the aliases in the query or the rest of the output.  I don’t have any repetitive column names.  

Why doesn’t the query have an idea which table each index of each row came from?

 

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.