Jump to content

[SOLVED] dynamic link prob.


Greaser9780

Recommended Posts

NOPE

Page sending I have this now:

if ($actsum < 20){

$sql1 =mysql_query("SELECT name FROM `draft_teams` ORDER BY activate ASC, teamid DESC LIMIT 1");

$res1=mysql_fetch_array($sql1);

$name1=$res1["name"];

$pd=$res1['pd'];

$id=$res1['teamid'];

 

 

header("Location: http://www.BLAH.com/mocks/functions.php/?id=".$res1['teamid']);

exit();

 

}  

 

Accepting page I have this:

 

<?php

include("db.php");

$id=$_GET['id'];

 

 

echo $id ;

 

 

It's redirecting properly. If I change $id to "BLAH" it shows up. I can't figure out why it's not sending the value of $id

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.