thesavior
01-09-2006, 01:52 AM
My code is:
<?php
if( !isset($_SESSION['login_username'])){
header("Location: index.php?act=admin");
} else {
if(isset($_GET['action']) AND $_GET['action'] == "edittutsnow"){
if ($_POST['approve'] == 1) {
// SQL to update row to be active
} else if ($_POST['approve'] == 2) {
// SQL to delete row
} else if ($_POST['approve'] == 3) {
// SQL to update row
$update = "UPDATE $tuttable SET image = '".$_POST['image']."', title = '".$_POST['title']."', tuturl = '".$_POST['tuturl']."', category = '".$_POST['category']."', author = '".$_POST['author']."', descr = '".$_POST['descr']."' WHERE id = '".$_POST['id']."'";
mysql_query($update)or die(mysql_error());
echo $update;
}
}
mysql_connect ($dbhost, $dbusername, $dbuserpass)or die(mysql_error());
mysql_select_db($dbname) or die(mysql_error());
$query = "SELECT * FROM $tuttable WHERE onoff='0' ORDER BY id DESC";
$result = mysql_query($query) or die(mysql_error());
while ($row = mysql_fetch_array($result)) {
echo
"<table style=\"clear: both;\">
<form action=\"index.php?act=adminlog&do=edit&action=edittutsnow\" method=\"POST\">
<tr>
<td rowspan=\"2\">
<img width=\"40\" height=\"40\" alt=\"preview\" src=\"".$row['image']."\" />
</td>
<td align=\"center\">
Title: <input type=\"text\" name=\"name\" value=\"".$row['title']."\" />
</td>
<td align=\"center\">
Author: <input type=\"text\" name=\"authorname\" value=\"".$row['author']."\" />
</td>
<td align=\"center\">
Tut-URL: <input type=\"text\" name=\"loca\" value=\"".$row['tuturl']."\" />
</td>
<td align=\"center\" rowspan=\"2\" colspan=\"2\">
<select name=\"approve\" id=\"approve\">
<option value=\"3\" selected=\"selected\">Edit</option>
<option value=\"1\">Approve</option>
<option value=\"0\">Leave as is</option>
<option value=\"2\">Delete</option>
</select>
<br />
<input type=\"hidden\" name=\"idnum\" value=\"".$row['id']."\" />
<input type=\"submit\" class=\"submit\" value=\"Go\" />
<br />
<input type=\"reset\" class=\"submit\" value=\"Reset\" />
</td>
</tr>
<tr>
<td colspan=\"1\">
<textarea name=\"descrip\">".$row['descr']."</textarea>
</td>
<td align=\"center\">
<input type=\"radio\" name=\"cat\" value=\"Photoshop\" checked/> Photoshop<br />
<input type=\"radio\" name=\"cat\" value=\"PHP\" /> PHP<br />
<input type=\"radio\" name=\"cat\" value=\"PSP\" /> PSP<br />
<input type=\"radio\" name=\"cat\" value=\"PSE\" /> PSE<br />
</td>
</tr>
<tr>
<td colspan=\"7\">
Preview Location:
<input type=\"text\" value=\"".$row['image']."\" name=\"preview\" size=\"55\" />
</td>
</tr>
</form>
</table>";
}
}
?>
and im echoing the update query, and it is returning: UPDATE tut_tutorials SET image = '', title = '', tuturl = '', category = '', author = '', descr = '' WHERE id = ''
Which means that for some reason it isn't getting data from the form. What do i change in my code to make it work?
<?php
if( !isset($_SESSION['login_username'])){
header("Location: index.php?act=admin");
} else {
if(isset($_GET['action']) AND $_GET['action'] == "edittutsnow"){
if ($_POST['approve'] == 1) {
// SQL to update row to be active
} else if ($_POST['approve'] == 2) {
// SQL to delete row
} else if ($_POST['approve'] == 3) {
// SQL to update row
$update = "UPDATE $tuttable SET image = '".$_POST['image']."', title = '".$_POST['title']."', tuturl = '".$_POST['tuturl']."', category = '".$_POST['category']."', author = '".$_POST['author']."', descr = '".$_POST['descr']."' WHERE id = '".$_POST['id']."'";
mysql_query($update)or die(mysql_error());
echo $update;
}
}
mysql_connect ($dbhost, $dbusername, $dbuserpass)or die(mysql_error());
mysql_select_db($dbname) or die(mysql_error());
$query = "SELECT * FROM $tuttable WHERE onoff='0' ORDER BY id DESC";
$result = mysql_query($query) or die(mysql_error());
while ($row = mysql_fetch_array($result)) {
echo
"<table style=\"clear: both;\">
<form action=\"index.php?act=adminlog&do=edit&action=edittutsnow\" method=\"POST\">
<tr>
<td rowspan=\"2\">
<img width=\"40\" height=\"40\" alt=\"preview\" src=\"".$row['image']."\" />
</td>
<td align=\"center\">
Title: <input type=\"text\" name=\"name\" value=\"".$row['title']."\" />
</td>
<td align=\"center\">
Author: <input type=\"text\" name=\"authorname\" value=\"".$row['author']."\" />
</td>
<td align=\"center\">
Tut-URL: <input type=\"text\" name=\"loca\" value=\"".$row['tuturl']."\" />
</td>
<td align=\"center\" rowspan=\"2\" colspan=\"2\">
<select name=\"approve\" id=\"approve\">
<option value=\"3\" selected=\"selected\">Edit</option>
<option value=\"1\">Approve</option>
<option value=\"0\">Leave as is</option>
<option value=\"2\">Delete</option>
</select>
<br />
<input type=\"hidden\" name=\"idnum\" value=\"".$row['id']."\" />
<input type=\"submit\" class=\"submit\" value=\"Go\" />
<br />
<input type=\"reset\" class=\"submit\" value=\"Reset\" />
</td>
</tr>
<tr>
<td colspan=\"1\">
<textarea name=\"descrip\">".$row['descr']."</textarea>
</td>
<td align=\"center\">
<input type=\"radio\" name=\"cat\" value=\"Photoshop\" checked/> Photoshop<br />
<input type=\"radio\" name=\"cat\" value=\"PHP\" /> PHP<br />
<input type=\"radio\" name=\"cat\" value=\"PSP\" /> PSP<br />
<input type=\"radio\" name=\"cat\" value=\"PSE\" /> PSE<br />
</td>
</tr>
<tr>
<td colspan=\"7\">
Preview Location:
<input type=\"text\" value=\"".$row['image']."\" name=\"preview\" size=\"55\" />
</td>
</tr>
</form>
</table>";
}
}
?>
and im echoing the update query, and it is returning: UPDATE tut_tutorials SET image = '', title = '', tuturl = '', category = '', author = '', descr = '' WHERE id = ''
Which means that for some reason it isn't getting data from the form. What do i change in my code to make it work?