Jump to content

php mysql question


dezkit

Recommended Posts

hey, im trying to run a query within php but it won't work, this is the query:

SELECT * FROM maps WHERE mapname='".$map."' ORDER BY runtime

$map equals to surf_#crypepsi

 

It works with other rows but not with surf_#crypepsi, what is the problem?

 

thanks

Link to comment
Share on other sites

I am using this code:

<?php
mysql_connect("localhost", "xxx", "xxx") or die(mysql_error());
mysql_select_db("xxx") or die(mysql_error());
$map = mysql_real_escape_string(trim(strip_tags($_GET["map"])));
if($map){
$query = "SELECT * FROM maps WHERE mapname='".$map."' ORDER BY runtime";
$result = mysql_query($query) or die(mysql_error());
echo "<table>";
while($row = mysql_fetch_array($result)){
echo "<tr><td>{$row['name']}</td></tr>";
}
echo "</table>";

} else {

$query = "SELECT * FROM maps ORDER BY mapname"; 	 
$result = mysql_query($query) or die(mysql_error());
while($row = mysql_fetch_array($result)){
echo "<a href='?map={$row['mapname']}'>{$row['mapname']}</a><br>";
}
}
?>

 

there are 2 mapnames: surf_#crypepsi surf_water-run, both have name assigned to it. When i click on surf_#crypepsi, it shows blank, when I press surf_water-run, it shows a name

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.