Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    PHP


SuperbHosting.net have generously sponsored dedicated servers to ensure a reliable and scalable dedicated hosting solution for BigResource.com.





Display Records 30 Days From Now


I am trying to display records that are 30 days from the current time.  Someone suggested the following:

select * from table WHERE date_column BETWEEN CURDATE() and DATE_SUB(CURDATE(),INTERVAL 30 DAY)




View Complete Forum Thread with Replies

Related Forum Messages:
Displaying Records After 2 Days
I trying to display only records that are 2 days old so the owner of the site can preview new records before they are available to others, this is what I've got so far...
$sqlquery = "SELECT headline, news, date_format(date,'%M %D %Y') as time FROM $table WHERE date < NOW() ORDER BY date DESC";

is there a way to extend it by 1 or 2 days, i've tried the TO_DAY function but couldn't get it to work either.

View Replies !
Displaying Records That Are Less Than 30 Days Old.
I have records that are dated using date('y,m,d') when they are created.

Would like to only display records that are less than 30 days old. So, IF record is older than 30 days - do not display. Here is my code:

$arr = $db->getArray("SELECT * FROM table WHERE id = '$id' ORDER BY date ASC");

View Replies !
Delete Records Older Than 14 Days
Does anybody know how to make a script that automatically removes mySQL records older than 14 days?

View Replies !
Update All Records In A Database 364 Days
I have a calendar with events for this year in a SQL database that I would like to use for next year too (the events will remain the same). The days of the week are important; what is on Monday, November 6, 2006 should be on Monday, November 5, 2007.

I will copy the existing table to another table for the next year, so what I would want to do is update the dates to be 364 days from each date.

Does anyone know a command that I can update all records by 364 days?

The table is practice07
The field is PracticeDate (that holds the date that I want to update)

View Replies !
SQL - Selecting All Records From Past 30 Days...
How do I only display records solely from the past 30 days with an SQL query, using the 'date' field in my database? The column in the table is called 'date' and uses date type :

date date No 0000-00-00

I have tried :

DATE_SUB(CURDATE(),INTERVAL 30 DAY)

but to no avail.

View Replies !
Display 10 Records Per Page And Then Display Links To Next Pages
I have been trying to display 10 records per page and then display links to next pages etc but I can't seem to get it to work. Code:

View Replies !
How Do I Display The Last 14 Days On A Page?
Does anyone know how to display the last 14 days including the current day
on a page in php? I don't know where to start with this myself.

View Replies !
Display The Current Days Tide Info
I have this so far trying to only display the current days tide info so I can output it. What am I doing wrong. Look at the xml file and I want only the current ays "Events"
PHP Code:

$url = 'http://tides.obinet.net'
$xml = simplexml_load_file($url);


echo '<b>Tide Data </b><br />'
echo $xml->Date, '<br />'
echo $xml->Activity, '<br />'
echo $xml->Time, ' <br />'
echo $xml->Height, ' <br />'

View Replies !
Display Records
I want it to display all the records meeting the criteria specified in the script, but it only shows one records and should show about ten. any thoughts or pointers to get it to display more than one record. Code:

View Replies !
Getting ALL My Records To Display
In this code, almost everything is working perfectly, but for my second query, I have six records that I want displayed in their own table like I have. I know that a loop would probably work, but I am just really not sure how to go about this. I would like the code to display a table of each of the records. Code:

View Replies !
No Records To Display
I am setting up your basic record retreival using a mySQL database and PHP. If there are no records that match the query, I would like to display a simple message indicating so.
Here is the code I was working with so far: Code:

View Replies !
Display Records
I have a dynamically populated jump menu that displays all of the names in my database. Originally I tried setting anchored links for each artist, but I can't it to work across dynamic pages. How do I configure it post the the rest of the data for the item selected to a second page or to the table on the original page. Sorry if I'm off on the terminology. I'm getting close here. This is the only missing piece.

View Replies !
Display All Records
I have the following code, that displays records in my database. How do I display each record along with a checkbox, then when a delete button is clicked, delete the selected records.

mysql_select_db("my_db", $con);

$result = mysql_query("SELECT * FROM person");

while($row = mysql_fetch_array($result))
{
  echo $row['FirstName'] . " " . $row['LastName'];
  echo "<br />";
}

View Replies !
Display Certain Records
I have a database with records that change every so often. Some products need to be taken out of the database so they will not be displayed and then later, they need to be put back in. I am looking for a way to not have to delete the product everytime and have to be reentered, maybe have a checkbox that is linked to the product and check and uncheck the box for the item to be displayed or not.

View Replies !
Display Records In Php/mysql
i have the mysql database with the name "wwwgosc_ton" and table with 17 field by the name "general". i want to dispaly all the records with 3 to 4 fileds and link each row to detail of the full field of that perticular records. Code:

View Replies !
Display 30 Records At A Time
I have a page which displays the 100s of records from a database. I want to shorten it up a bit and display 75 at a time with a > & < button so the records could be scrolled through. But I dont know where to start?

View Replies !
Display Selected Records
I have a table on a form which contains records that can be multiple selected by checkboxes. A submit button sucessfully sends the record IDs of the checked records to the next page. I want to display the records that were selected via the checkboxes, but the problem is that I get only the first of them.

View Replies !
Display Records In 2 Colums
I have to display all the record in 2 column but the thing is the next record will be go below the first record. Code:

View Replies !
Display Newest Records
which will show last/newest n (10 or 20 30 numbers) records in a mySQL DB? the DB db has a date field, a title, a description field.

View Replies !
Display Only 5 Records Per Page.
I need one example of paging.I have a db and want to display only 5 records per page.

View Replies !
Display Total Records
the admin side of the content management system im building, I have a fille called "view_users.php", which will diplay a list of all the users who are registered in the db. What I am wondering is how I would go about setting up a query or whatever to look at the total number of records and return it to the page so that I could have something on my page say "645,527 members and counting.

View Replies !
AJAX To Display New Records In A Table
Instead of refreshing the entire page to show the new fields in a
table, I was wondering if it would be possible to use AJAX to display
the new records in a table.

For example:

Messages are entered into the DB. I use PHP to create a table that
displays the messages.

Instead of refreshing the entire page to show the table with new
messages, how can I use AJAX to show the new messages in the table
without refreshing the entire page?

View Replies !
Display All The Records On The Html Page
I know how to display records on an html page from a mysql database with PHP. I am using

$db = mysql_connect("localhost", "root");

mysql_select_db("test",$db);

$result = mysql_query("SELECT * FROM st",$db);

while ($myrow = mysql_fetch_row($result)) {

echo "<td align="left" class="heading2g" nowrap>", $myrow[12], "</td>";}

which works fine.

Now I have a table which has several records. Each field is either 0 or 1. What I want is to display all the records on the html page like before but instead of displaying 0 or 1, if it is a 0 then a little graphic is displayed and if it is a 1 then another little graphic is displayed.

View Replies !
Display Number Of Records Into Pages
we are using oracle database, Oracle Select statement is not supporting the LIMIT , Is there any other way to display records into pages.

View Replies !
Display Child Records Only When Checkbox Is On
I have a list of nested arrays, that displays the parent, and then has the child records indented underneath. I want to be able to make a collapsible list, which I know how to do with regular data, but I'm having troubles getting the child records to display.

I can get regular text to show up when I click but not the child records. What I am currently doing is calling a javascript onClick that changes the span textContent property.

What would be the best way to handle the child records? Putting them in a function and calling it from the javascript by way of AJAX or something? Code:

View Replies !
Input And Display Records With Same Script?
I am trying to create a form for a MySQL database similar to a spreadsheet.
The idea is to display a list of records, with the last line of the list
being an input form. When the user enters data in the form and hits the
submit button, the data is entered and the form is reloaded with the new
data displayed and another input form becomes the last line.

Example ---

Before entering new data

Record 1
Record 2
Record 3
Input form Submit button

After entering new data

Record 1
Record 2
Record 3
Record 4
Input form Submit button

It seems is what I think the approach should be:

1. Display all current records - the last line is an input form
2. User adds data to the form and hits the Submit button
3. The form action calls the same script
4. The new data is entered into the database
5. Back to step one

Does this make sense or is there a better way? How do I structure the
queries to accomplish this?

View Replies !
Display Problem (number Of Records)
My company sends out a newsletter displaying new artwork aquisitions- my boss would like to have the number of works that we have by an artist displayed next to their name. Meaning- we show the image- then the artist name and the name of the artwork. He would like for the right number to show up in parenthesis next to the artist name.

We have that displaying in another area (in a drop down search box). When you pull down the box it autopopulates with artists in the database and shows the number next to their name. Code:

View Replies !
How Can Display All Records Using Foreach And Template
I use template to display the xml records which are parsed by foreach loop. But only the newest record is displayed on the template page. I want to display all the records Code:

View Replies !
Display Only 10 Records With Next And Previous Buttons
Does anyone know of a good tutorial that will show how to only display up to 10 record sets from a query? I want to be able to display up to 10 items and if there is more than 10 from the query, have a next and previous button.

View Replies !
Mysql_query - Display All Records Except Where The Fldname=xxxx
I have a table with fldname. I want to display all records except where the fldname=xxxx. I thought an except where='xxxx' would work but not. Below is what I used.

$rs=mysql_query("select * from tbllist except WHERE fldname='xxxx'");

View Replies !
Deduct Date/time From Daste/time To Display Hours/days Difference
what i'm wanting to do is take away date logged from date closed therefore leaving the time between the 2 date/time stamps so that i can work out the average time later on and display as average time: 1day 2hours .

View Replies !
Sending Variable To Display Number Of Records To Write?
Sorry, couldn't come up with any reasonably short subject.

I am sort of new to PHP. I've got an event registration database (MySQL). In it, I have two tables, one for the registrant's info, and one for the reservations. Assuming that one registrant can make more than one reservation.

There are 4 types of registrations. What I would like to do is to have the first page filled out with the registrant info, and have the registrant select the number of each type of reservations he/she would like. These numbers will not be written to the database, but will be used to determine how many of each type of reservation will be shown in the next window. Once the info is submitted (and written to the database), the user will then be taken to another page where they will enter the name for each registration, as well as the entree choice.

so, the question is, how to do that (I will be passing the RegID as the primary key from tblRegistrant to use as the linked field to tblReservations). Ideally, I'd also like some sort of edit button so people don't try to use the back browser button to change their numbers. Any suggestions?

View Replies !
Page Numbering - Display A Set Amount Of Records From My Result.
I am having a problem with trying to display a set amount of records from my result. I have modified the Page Numbering tutorial from this site and adapted it to use MSSQL. I have verified that the correct values for my variables are being passed to the query.

The calculation for the records that should be displayed per page is correct.
The total number of records returned from my query is correct. And the calculated number of total pages to be displayed is correct.

So, initially it displays the first 10 results as it should, and has the pages numbers at the bottom.  The problem is, when I click on a different page number the same 10 results are ALWAYS displayed.  Even though my $page variable IS being updated. Code:

View Replies !
Display Records From A MYSQL Database On Multiple Pages.
I am trying to display records from a MYSQL database on multiple pages. I get the following error when I attempt to display the results

mysql_fetch_array(): supplied argument is not a valid MYSQL result in

c:intentpubwwwrootprogeneefsires1.php on line 238

The code is shown below. I am including a file called class.pager.php for page numbers (author: Tsigo) and this part works fine.

/* Now we use the LIMIT clause to grab a range of rows */
$result = mysql_query("SELECT sireid, sirename, sirethumbpic, comment_1,comment_2,comment_3 FROM beef".$start.", ".$limit);

View Replies !
Displaying Priorty Records And Normal Records In The One Dataset.
I have a page which displays the records from the database and uses paging to display the records in groupes of 10 per page.

I now want to be able to show results depending on the database field (display) in the database (can be set to either "full" or "limited"). If the record and the field display is equal to "full" i want to then display this record at the top of the record set and display all the fields.

If the record is equal to "limited" i want to display different results and they must show after all the records which are equal to "full". I can't output two different recordsets as i use paging and only want to show 10 records per page. Code:

View Replies !
Displaying Multiple Records And Want To Be Able To Update These Records With Different Values.
I am creating a page where I am displaying multiple records and want to be able to update these records with different values.

View Replies !
DELETE RECORDS - Database Adding New Records
iv got the database adding new records, and now I want it to display all of the records that are there buy name and id number, then i want u to be able to type in the id number of the customer u wish to delete and it shoudl delete it, sounds good buts its not actually deleting the record. it says it does, but its not doing it. Code:

View Replies !
Problems With The Listing Of Records, Editing Of Records
I'm having problems with the listing of records, editing of records, and deleting of records. I'm not sure what I'm doing wrong.

The listing script is calling the add entry script. So I add the record, the database is updated, and nothing else happens. I don't get a list of records from that table.

When I did SQL programming off the mainframe, you did a simple select statement. I'm not sure why the PHP list script is calling the add entry script. Code:

View Replies !
How Do You Add 7 Days To Now()?
How do you add 7 days to the now() function stored in database as 00-00-00 00:00:00

View Replies !
Last 7 Days
I am trying to run a query to get the last 7 days in the following format: Code:

<a href="roundup.php?news_date=20060523">Tuesday, May 23, 2006</a><br>
<a href="roundup.php?news_date=20060522">Monday, May 22, 2006</a><br>
<a href="roundup.php?news_date=20060521">Sunday, May 21, 2006</a><br>
<a href="roundup.php?news_date=20060520">Saturday, May 20, 2006</a><br>
<a href="roundup.php?news_date=20060519">Friday, May 19, 2006</a><br>
<a href="roundup.php?news_date=20060518">Thursday, May 18, 2006</a><br>
<a href="roundup.php?news_date=20060517">Wednesday, May 17, 2006</a><br>

View Replies !
How To Get -7 Days
how can i query the last seven days of my table

(table )waytogo
id (int auto increment) | dates (datetime format)
1 | 2005-11-23 08:54:32
2 | 2005-11-21 09:32:45
3 | 2005-11-12 12:43:22
4 | 2005-11-19 02:30:00

etc...

View Replies !
Days In A Calender
I am trying to write a calender display that shows the days of the month accross the top of a table, and people's names down the side. One of the things I would like to do is to change the colour when the days are Saturday or Sunday. PHP Code:

View Replies !
Get The Birthdays For The Next 14 Days
I have a table of members and I have their dob. Now I want to show the members which have their birthday in the next two weeks. PHP Code:

View Replies !
Dates Of $day In The Next $n Days
how would I go about working out the dates (timestamps) of the day $day (e.g. Monday, Tuesday, &c) in the next $n days. So if $day was Monday and $n 28 I would want to find out the dates in the next 28 days that are a Monday.

The problem is that I am not sure about the logic side of the problem. A crude solution that I can think up is doing something like PHP Code:

View Replies !
Add Days To Date
I have a date assigned to a variable $firstPay and another variable $totalDaysTo which has the number of that I want to add to the variable $firstPay to get some future date. I'm not sure how to wright the code for this one.

View Replies !
Days Calculation
i can't seem to get this what im trying to do is work out the elapsed time in DAYS from 2 dates code is:

             $time_now = time();
             $d2 = date('Y-m-d H:i:s', $time_now);
             $d1 = date('Y-m-d H:i:s', strtotime($ng_date));
             $days = ceil(($d1 - $d2) / (60 * 60 * 24));
when echoing out it produces:

2007-06-02 16:53:24
2007-08-27 18:00:51
which is right, but $days echoes out as 0.

View Replies !
Days Of Week
I'm attempting to display information for today, the next day and the day after (so only three days worth). The first day is hardcoded to say now. I want the next day and the day after to be the abbreviated day (ie. Tue, Wed and so on). The problem I have with the following code is that now and the next day are the same. Thus, I have now (which is Tue), the next day (which is ALSO Tues - wrong!) and the day after is Wed. Here's the include:

$return['mydata'] = array();
for($i = 0; $i < 2; $i++) {
$attr = explode('"', $this->tag('blm:mydata',$i));
if(count($attr) > 1) {
$day = array();
$day['when'] = $attr[1];
$day['image'] = IMAGES.$this->translate($attr[11]).'.gif'
array_push($return['mydata'], $day);
}
}
return $return;

And here's the front-end page:

echo " ".$stuff['mydata'][0]['when']."<br/>

View Replies !
Select Last 7 Days
I have a load of dates in my 'orders' table in this format 2006-10-25 and i need to be able write a query that would select all orders in the last 7 days - in fat it can be any number of days but that's a variable from a select menu. what i can't work out is how to write the query :

SELECT * FROM orders WHERE ord_date ..(is between x days ago and today)?

View Replies !
Adding 7 Days
I have been tearing my hair out trying to work out how to add 7 days onto the current date. This is how i am calcualting the current date: PHP Code:

// Set the timezone for getting the currrent local time
    $timezone  = +9;

Code:
<input type="hidden" name="date" value="<? print gmdate("Y/m/d @ H:i:s", time() + 3600*($timezone+date("I"))); ?>">

This is being stored in the DB like this: Code:

$SQL = $SQL . " date_posted DATETIME NOT NULL default &#55612;&#57200;-00-00 00:00:00', ";

So, what I am trying to do is create a variable called "Expiry Date" which I want to be $date + 7 days .

View Replies !
Days Remaining
I want to find out number of days remain from birthday(any other day).

View Replies !
Days Between Two Given Dates
I have two variables which look like:

$begin = "23-08-05"
$end = "26-08-05"

Now i want also to know the dates between them.

24-08-05
25-08-05

How can i do this?

View Replies !
Days Of Week In App
recommend for a best approach to populating a Days-of-the-Week table in an event-scheduler app? in my particular case, each day of the week relates to a daily drink-special for a bar. i'm trying to figure out my order of dependencies. here's a snapshot of my tables

if i am going to add an event,i have to have it on a day of the week. that day of the week needs to have it's specials populated in order for it to exist in the Table. so, how should i go about "forcing" the Event Scheduler App User to first populate the Days-of-Week table so that when she adds data for an event, the dayys of the week will be available to input into the Event table?

View Replies !

Copyright © 2005-08 www.BigResource.com, All rights reserved