Forum: MySQL May 30th, 2009 |
| Replies: 4 Views: 647 Does it work if you only order by one of the terms by removing the + and the following statement? |
Forum: MySQL Apr 25th, 2009 |
| Replies: 14 Views: 1,490 Try typing your query into phpMyAdmin and see if that returns any rows for the query.
It seems that the query will not return the rows due to the fact MySql will not use that format of time. It... |
Forum: MySQL Apr 22nd, 2009 |
| Replies: 14 Views: 1,490 It would seem that you will need to run a mysql_num_rows check on your query, it seems that the query is returning no matches or start dates.
echo mysql_num_rows( $q );
// $q being whatever... |
Forum: MySQL Apr 21st, 2009 |
| Replies: 14 Views: 1,490 Ok can you use a client like phpMyAdmin to view the tables themselves?
If so do the dates indeed look like that?
What is the field name in wich the dates come under?
Have you changed the... |
Forum: MySQL Apr 19th, 2009 |
| Replies: 14 Views: 1,490 Ok so where the loop is (while( $row = mysql_ ) you need to change the array's to the names of each field on the rows of your table.
HTML FILE:
<html xmlns="http://www.w3.org/1999/xhtml">... |
Forum: MySQL Apr 19th, 2009 |
| Replies: 14 Views: 1,490 You didn't seem to actually make the query in the PHP document.
Where you wrote you need to actually send the query. For example what you would do is
$date = $_POST[%D %M %Y];
$query =... |