Jump to content

Variable Inside a Variable


ShoeLace1291

Recommended Posts

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

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();

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.