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
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
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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.