Quote:
Today at 01:06 PM cindyd said this in Post #166
PHP Code:
if ($action=="editarticle") {
$sql = "SELECT * FROM vbArticles_content WHERE artid=$artid";
$result = mysql_query($sql);
$myrow = mysql_fetch_array($result);
$artid=$myrow["artid"];
$title=$myrow["title"];
$byline=$myrow["byline"]; ----> this is line 234
$author=$myrow["author"];
$date=$myrow["date"];
$content=$myrow["content"];
|
Doesnt look like any error there in line 234. Hmm,deletion never had any problems, while an editting problem/s got nicked previously.
Any others facing the same problem ?
Jus went thru the code, seems in order ( then again, i might be missing something , pretty new to this too )