You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I am struggling on creating a save data bracket and searching about the generated bracket can you help me I have created a url and the id of the tournament but I am struggling to save the tournament bracket
if (saveData) {
console.log(saveData);
// Encode the saveData as a URI component
var encodedSaveData = encodeURIComponent(JSON.stringify(saveData));
// Redirect to generatebracket.php with the encoded saveData in the URL
window.location.href = "generatebracket.php?id=" + <?php echo $tournament_id; ?> + "&data=" + encodedSaveData;
} else {
console.log("saveData is not defined or is null.");
}
The text was updated successfully, but these errors were encountered:
Hello, I am struggling on creating a save data bracket and searching about the generated bracket can you help me I have created a url and the id of the tournament but I am struggling to save the tournament bracket
if (saveData) {
console.log(saveData);
The text was updated successfully, but these errors were encountered: