PHPilliterate Posted January 22, 2008 Share Posted January 22, 2008 Can anyone help me with this one line?? $MM_redirectLoginSuccess = "cwplayers_Results.php?query=".$_SESSION['query']""; Link to comment https://forums.phpfreaks.com/topic/87170-solved-whats-wrong-with-this-one-line/ Share on other sites More sharing options...
pdkv2 Posted January 22, 2008 Share Posted January 22, 2008 Can anyone help me with this one line?? $MM_redirectLoginSuccess = "cwplayers_Results.php?query=".$_SESSION['query']""; use this $MM_redirectLoginSuccess = "cwplayers_Results.php?query=".$_SESSION['query']; Rgds Sharad Link to comment https://forums.phpfreaks.com/topic/87170-solved-whats-wrong-with-this-one-line/#findComment-445837 Share on other sites More sharing options...
p2grace Posted January 22, 2008 Share Posted January 22, 2008 You're missing the second concatenating period. $MM_redirectLoginSuccess = "cwplayers_Results.php?query=".$_SESSION['query'].""; Link to comment https://forums.phpfreaks.com/topic/87170-solved-whats-wrong-with-this-one-line/#findComment-445838 Share on other sites More sharing options...
PHPilliterate Posted January 22, 2008 Author Share Posted January 22, 2008 They both worked! Thanks Link to comment https://forums.phpfreaks.com/topic/87170-solved-whats-wrong-with-this-one-line/#findComment-445841 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.