The problem is that the script is not picking up a certain from that ID. When I go to "domain.com/ViewGame?gid=34283", it doesn't pick up the gaming info from that ID in the mySQL.
Help anyone?
Heres what is displayed on a certain ID:
TEST:
<game title supposed to be here>
Can someone rewrite the code for me please. If you do, I will rep ya.
Help anyone?
Code:
<?php
require('mysql.php');
mysql_select_db("ruko_fp", $con);
// Define the variables
$gid = $_GET['gid'];
$gametitle = $_GET['gametitle'];
$gamedescription = $_GET['gamedescription'];
$gamerating = $_GET['gamerating'];
$gamereview = $_GET['gamereview'];
$gameid = $_GET['gid'];
?>
TEST:
<h3><? $gametitle ?></h3>
Heres what is displayed on a certain ID:
TEST:
<game title supposed to be here>
Can someone rewrite the code for me please. If you do, I will rep ya.







