Q
Q
quicku2021-06-18 18:53:09
PHP
quicku, 2021-06-18 18:53:09

The rb update request is not processed, how to solve?

there is a form that sends a request to the save.php file.
This file contains the code:

require '../db.php';

$id =  $_POST['id'];
$title =  $_POST['title'];
$m_images =  $_POST['m_images'];

$game = R::load('games', $id);

$game["title"] = $title; 
$game["m_images"] = $m_images; 

R::store($game);

header('Location: /admin/editgame.php?id=' . $id');

But for some reason, the request is not processed after saving:
The page is not available until it can process this request

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question