elian
12-10-2011, 09:34 AM
I have not really been started with php
and do not know how, but the update does not work.
The update is in another table.
<?php
$sql = "SELECT Name, Address, group, date FROM members WHERE Name = '$HTTP_POST_VARS[zoekterm]'AND ID_GROUP ='11'";
$res = mysql_query($sql);
if (mysql_num_rows($res) >= 1)
{
while ($row = mysql_fetch_array($res))
{
echo "<p>Name: <b>$row[Name]</b><br>";
echo "Address: <b>$row[Address]</b><br>";
echo "Group: <b>$row[group]</b><br>";
echo "Date: <b>$row[date]</b></p>";
$sql = "UPDATE donatie SET VID = ". $row[Name]." WHERE nr ='1'";
}
}
?>
I think it's just how I ". $ Row [Name]. " to write, and why should it be so.
I would like to know this.
thanks
and do not know how, but the update does not work.
The update is in another table.
<?php
$sql = "SELECT Name, Address, group, date FROM members WHERE Name = '$HTTP_POST_VARS[zoekterm]'AND ID_GROUP ='11'";
$res = mysql_query($sql);
if (mysql_num_rows($res) >= 1)
{
while ($row = mysql_fetch_array($res))
{
echo "<p>Name: <b>$row[Name]</b><br>";
echo "Address: <b>$row[Address]</b><br>";
echo "Group: <b>$row[group]</b><br>";
echo "Date: <b>$row[date]</b></p>";
$sql = "UPDATE donatie SET VID = ". $row[Name]." WHERE nr ='1'";
}
}
?>
I think it's just how I ". $ Row [Name]. " to write, and why should it be so.
I would like to know this.
thanks