ShoeLace1291 Posted February 5, 2009 Share Posted February 5, 2009 I am trying to use window.location to redirect to another page. My function is confirmation(matchID). Say matchID is equal to 3. The url would output as match.php?action=delete;id=3. This is my code: function confirmation(matchID) { var answer = confirm("Are you sure you want to delete this item? This action CANNOT be undone.") if (answer){ window.location = "http://localhost/fourthcore/matches.php?action=delete;id=" } else{ window.location = "http://localhost/fourthcore/matches.php?view=upcoming" } } Link to comment https://forums.phpfreaks.com/topic/143902-variable-inside-a-variable/ Share on other sites More sharing options...
Angerslave Posted February 5, 2009 Share Posted February 5, 2009 You can glue string like you can sum numbers - just use + window.location = "http://localhost/fourthcore/matches.php?action=delete;id=" + matchID; Or, if matchID is passing by integer, use magic ToString() method (it's not neccecarry, but it is a good practice) window.location = "http://localhost/fourthcore/matches.php?action=delete;id=" + matchID.ToString(); Link to comment https://forums.phpfreaks.com/topic/143902-variable-inside-a-variable/#findComment-755101 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.