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

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.