CodingForums.com

CodingForums.com (http://www.codingforums.com/index.php)
-   PHP (http://www.codingforums.com/forumdisplay.php?f=6)
-   -   php url (http://www.codingforums.com/showthread.php?t=241555)

amcf1992 10-21-2011 01:23 AM

php url
 
Okay I would like to do the following

Have one php page with all the following

Signup
Register
Index
Account
Logout

I want the url to be something like for each of them

http://localhost/?id=437280 <-mysql row id

How would I do this?

Thanks

mlseim 10-21-2011 01:50 AM

<?php
$row_id=$_GET['id'];
echo $row_id;
?>

I'm not sure if that's what you mean or not.


All times are GMT +1. The time now is 10:55 PM.

Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.