How would I make a code that dynamicly gets MySQL and makes it like ?UserID=54556 :-/?
balle 0 Newbie Poster
Recommended Answers
Jump to PostMake your url, e.g.: www.example.com/users.php?id=372687
Pick up the querystring 'id':
$id = mysql_real_escape_string($_GET['id']); $rs = mysql_query("SELECT ... FROM ... WHERE id = '$id'"); ...
All 4 Replies
NettSite 19 Junior Poster in Training
balle commented: Did you see the like? =P +0
NettSite 19 Junior Poster in Training

diafol
johnmaguire2013 0 Newbie Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.