Jump to content

delete oldest row


whi01135879

Recommended Posts

<?php
if($_POST['submit'])
{
$title = trim(stripslashes($_POST['title']));
$news = stripslashes(nl2br($_POST['news']));
if($title&&$news){
	require_once("../inc/connect_to_mysql.php");



	$dateof = date("Y-m-d");
	$insert = mysql_query("INSERT INTO newsfeed VALUES ('','$title','$news','$dateof')");

	die ('<p class="accepted">Your news has been posted</p>');

}
else{
$msg_to_user = '<p class="error">Please fill out the title and news update to procced.</p>';
}
}
?>

Link to comment
https://forums.phpfreaks.com/topic/217129-delete-oldest-row/#findComment-1127678
Share on other sites

<?php
if($_POST['submit'])
   {
   $title = trim(stripslashes($_POST['title']));
   $news = stripslashes(nl2br($_POST['news']));
   if($title&&$news){
      require_once("../inc/connect_to_mysql.php");
      
      
      
      $dateof = date("Y-m-d H:i:s");
      $insert = mysql_query("INSERT INTO newsfeed VALUES ('','$title','$news','$dateof')");
      $delete = mysql_query("DELETE FROM newsfeed ORDER BY dateField DESC LIMIT 1");
      die ('<p class="accepted">Your news has been posted</p>');
      
   }
   else{
   $msg_to_user = '<p class="error">Please fill out the title and news update to procced.</p>';
   }
   }
?>

Link to comment
https://forums.phpfreaks.com/topic/217129-delete-oldest-row/#findComment-1127689
Share on other sites

Sweet just changed that code now works ace :P :P :P

<?php 
if($_POST['submit'])   
{   
$title = trim(stripslashes($_POST['title']));   
$news = stripslashes(nl2br($_POST['news']));   

if($title&&$news)
{      
require_once("../inc/connect_to_mysql.php");                        
$dateof = date("Y-m-d");      
$insert = mysql_query("INSERT INTO newsfeed VALUES ('','$title','$news','$dateof')");      
$delete = mysql_query("DELETE FROM newsfeed ORDER BY ID LIMIT 1");      
die ('<p class="accepted">Your news has been posted</p>');         
}   
else{   
$msg_to_user = '<p class="error">Please fill out the title and news update to procced.</p>';   
}
   }
?>

Link to comment
https://forums.phpfreaks.com/topic/217129-delete-oldest-row/#findComment-1127696
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.