Jump to content

Recommended Posts

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
https://forums.phpfreaks.com/topic/196046-php-mysql-question/#findComment-1029758
Share on other sites

the url is this "?map=surf_#crypepsi"

 

i think the php is grabbing surf_ and leaving out #crypepsi because of the numeral sign, how do i fix this?

So $map  is infect "surf_" and NOT 'surf_#crypepsi'

 

 

your need to use urlencode before passing it via the URL

Link to comment
https://forums.phpfreaks.com/topic/196046-php-mysql-question/#findComment-1029761
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.