[SOLVED] Button redirect not working |
10/20/2011 8:26:01 PM |
PHPRunner General questions | |
N
notuo author
Hi again. $foo = "http://domain.com/findereporte_edit.php?editid1=" . $keys["casosID"];
|
|
C
|
cgphp 10/21/2011 |
In the Server section enter this code: $result['CasosID'] = $keys['casosID'];
location.href = "http://domain.com/findereporte_edit.php?editid1=" + result['casosID']; |
N
|
notuo author 10/21/2011 |
In the Server section enter this code: $result['CasosID'] = $keys['casosID'];
location.href = "domain.com/findereporte_edit.php?editid1="'>http://domain.com/findereporte_edit.php?editid1=" + result['casosID'];
$result['site'] = "domain.com/findereporte_edit.php?editid1=" . $keys["casosID"];
location.href = result['site'];
location.href = "domain.com/findereporte_edit.php?editid1="'>http://domain.com/findereporte_edit.php?editid1=" + result['casosID'];
|
C
|
cgphp 10/21/2011 |
The fixed version: $result['casosID'] = $keys['casosID'];
location.href = "http://domain.com/findereporte_edit.php?editid1=" + result['casosID']; |
N
|
notuo author 10/21/2011 |
The fixed version: In the Server section enter this code: $result['casosID'] = $keys['casosID'];
location.href = "http://domain.com/findereporte_edit.php?editid1=" + result['casosID'];
|