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']""; Quote 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 Quote 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'].""; Quote 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 Quote 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
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.