Hi ... I want to create some php pages where I have to change the variables ( top of the page ) through a form and of course save them on the same page. I don't want to use databases. It's possible???
<?php
$pageurl = "text1";
$title = "text2";
$description = "Desc...Desc.... Desc.........";
$image = "text3";
$price = "12";
$conf = " H 30";
?>
<!DOCTYPE html>
<html lang="it" >
<head>
<meta charset="UTF-8">
<title><?php echo $title; ?> | Mysite - Plants collection</title>
<meta name="description" content="<?php echo $description; ?>">
<meta property="og:url" content="https://www.mysite.it/shop/<?php echo $image; ?>.php" />
<meta property="og:type" content="product" />
<meta property="og:title" content="<?php echo $title; ?>|Site" />
<meta property="og:description" content="<?php echo $description; ?> " />
<meta property="og:image" content="https://www.mysite.it/images/<?php echo $image; ?>.jpg" />
<meta property="og:site_name" content="Mysite">