Hey, i'm new to PHP coding and my knowledge of php is increasing. I have a problem though.
Im currently making a flash game site and I want to make urls like "Domain.com/Play.php?gid=34823"
And when guests or users are on that page (with ID "34823"), I want it to show some information about that certain game info with that certain ID. How do I do that?
My play.php code(its not done yet!)
<?php
require_once('global_setting.php');
require('mysql.php')
mysql_select_db("my_db", $con)
// Define the information of that game
$gametitle = ???
$gamedescription = ???
$gamerating = ???
$gamereview = ???
$gameid = ???
?>