Jump to content

$_GET Function


dean7

Recommended Posts

Hi all, Im trying something which when a User clicks on there Rep they have it displays all the ranks, but on the same page, so far ive got this:

 

<?php
$view_rep = $_GET['repview'];
$thererep = $fetch->rep;

if (strip_tags($view_rep)){
echo ("<table align='center' class='table' border='1' cellpadding='0' cellspacing='0' width='50%'>
	<tr>
		<td class='header' align='center'>Your Rep</td>
	</tr>
	<tr>
		<td>You Currently Have: ".makecomma($thererep)."</td>
	</tr>
</table>");
}
?>
<font color='#000055'>Rep:</font> <a href='?repview' target='mainFrame'><?php echo("".makecomma($fetch->rep).""); ?></a>

(I haven't finished the whole echo(""); part yet as I was just testing it before I got to far.)

 

But when the click the Rep link it just shows there full stats instaid just the Rep.

 

Is anyone able to put me in the right direction on sorting this?

Thanks.

Link to comment
https://forums.phpfreaks.com/topic/221890-_get-function/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.