Nieuw lid |
|
Hoe laat ik mijn submit button enkel de update query uitvoeren als hij er op klikt , anders mag hij de waarden id tabel niet wijzigen.
<?PHP
include("connect.php");
$query = "SELECT text FROM $pagina WHERE id=$taalid"; //de var $query maken
$resultaat = mysql_query($query) or die; // de query maken
$edit = mysql_fetch_array($resultaat) //gegevens uit de database halen
?>
<form action="savedata.php" method="POST">
<?PHP
include("FCKeditor/fckeditor.php") ;
$oFCKeditor = new FCKeditor('FCKeditor1') ;
$oFCKeditor->BasePath = '/admin/FCKeditor/';
$oFCKeditor->Value = $edit['text'];
$oFCKeditor->ToolbarSet = "Default";
$oFCKeditor->Create() ;
?>
<br>
<input type="submit" value="Submit">
<?PHP include("connect.php"); $query = "SELECT text FROM $pagina WHERE id=$taalid"; //de var $query maken ?> <form action="savedata.php" method="POST"> <?PHP include("FCKeditor/fckeditor.php") ; $oFCKeditor = new FCKeditor('FCKeditor1') ; $oFCKeditor->BasePath = '/admin/FCKeditor/'; $oFCKeditor->Value = $edit['text']; $oFCKeditor->ToolbarSet = "Default"; $oFCKeditor->Create() ; ?> <br> <input type="submit" value="Submit">
en dan savedata.php
bevat;
<?php
$sValue = stripslashes( $_POST['FCKeditor1'] ) ;
$result2 = mysql_query("UPDATE $pagina SET text='$sValue' WHERE id='$taalid' ") or die ("Fout met de database");
echo "GEGEVENS GEWIJZIGD";
?>
<?php $result2 = mysql_query("UPDATE $pagina SET text='$sValue' WHERE id='$taalid' ") or die ("Fout met de database"); echo "GEGEVENS GEWIJZIGD"; ?>
|