Jump to content

Display Records By Newly Added Or Updated How?


lovephp

Recommended Posts

i do this

 

mysql_query("SELECT id, randid, center, customer_name, home_phone, time, approval * FROM table ORDER BY DESC");

 

and i get lank page why?

 

Jesi asked for your table structure, which would help us solve your problem. You will need to supply that information before we can really help you. If you have a unique column that is auto_increment, you can order the results by that column descending. As to why you are seeing a blank page, in your query you are not descending by a column and you are misusing the * asterisk symbol, therefore the SQL syntax is invalid and an error is being triggered. You should have error_handling set to -1 and display_errors set to on.

here you go

 

--
-- Table structure for table `table`
--

CREATE TABLE IF NOT EXISTS `table` (
 `id` int(11) NOT NULL AUTO_INCREMENT,
 `customer_name` varchar(150) NOT NULL,
 `address` varchar(150) NOT NULL,
 `home_phone` varchar(12) NOT NULL,
 `alt_phone` varchar(12) NOT NULL,
 `email` varchar(100) NOT NULL,
 `sex` varchar(10) NOT NULL,
 `mortgagetype` varchar(50) NOT NULL,
 `propertyvalue` varchar(50) NOT NULL,
 `mortgagebalance` varchar(50) NOT NULL,
 `secondmortgage` varchar(50) NOT NULL,
 `monthlypayments` varchar(50) NOT NULL,
 `monthlypaymentstype` varchar(50) NOT NULL,
 `secondmortgagepayments` varchar(50) NOT NULL,
 `secondmortgagepaymentstype` varchar(50) NOT NULL,
 `interestrate` varchar(50) NOT NULL,
 `secondinterest` varchar(50) NOT NULL,
 `ltv` varchar(50) NOT NULL,
 `creditrating` varchar(50) NOT NULL,
 `misspayments` varchar(10) NOT NULL,
 `additionaldebts` varchar(500) NOT NULL,
 `penalty` varchar(50) NOT NULL,
 `refinanced` varchar(10) NOT NULL,
 `maturity` varchar(10) NOT NULL,
 `lender` varchar(150) NOT NULL,
 `employment` varchar(150) NOT NULL,
 `ahi` varchar(150) NOT NULL,
 `maritialstatus` varchar(50) NOT NULL,
 `bankruptcy` varchar(10) NOT NULL,
 `bankruptcydischarged` varchar(50) NOT NULL,
 `proposal` varchar(10) NOT NULL,
 `proposalbalance` varchar(50) NOT NULL,
 `ip` varchar(50) NOT NULL,
 `center` varchar(50) NOT NULL,
 `approval` varchar(50) NOT NULL,
 `comments` text NOT NULL,
 `time` int(100) NOT NULL,
 `status_comment` text NOT NULL,
 `randid` varchar(10) NOT NULL,
 PRIMARY KEY (`id`),
 UNIQUE KEY `home_phone` (`home_phone`,`email`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `table`
--

how do i do it here?

 

mysql_query("UPDATE table SET customer_name ='$cusname',  address = '$address', home_phone = '$phone', alt_phone = '$altphone', email = '$email',
			    sex = '$sex', mortgagetype = '$mortgagetype', propertyvalue ='$propertyvalue', mortgagebalance = '$mortgagebalance', secondmortgage = '$secondmortgage',
			    monthlypayments = '$monthlypayments', monthlypaymentstype = '$monthlypaymentstype', secondmortgagepayments = '$secondmortgagepayments', secondmortgagepaymentstype = '$secondmortgagepaymentstype', interestrate = '$interest', secondinterest = '$secondinterest',
			    ltv = '$ltv', creditrating = '$credit', misspayments = '$misspayments', additionaldebts = '$debts', penalty = '$penalty', refinanced = '$refinanced',
			    maturity = '$maturity', lender = '$lender', employment = '$employment', ahi = '$ahi', maritialstatus = '$maritialstatus', bankruptcy = '$bankruptcy',
			    bankruptcydischarged = '$bankruptcydischarged', proposal = '$proposal', proposalbalance = '$proposalbalance', center = '$center', comments = '$comments',
			    approval = '$approval', status_comment = '$stcomment' WHERE id = '$id'")
               or die(mysql_error());   

What type is the field? You should have made it a DATETIME. If you make it a DATETIME you can use CURDATE().

 

DATETIME - use NOW() as this has the time element too

DATE - use CURDATE() as no time element

ok i added a new column like `updated` TIMESPAMP NOT NULL but everytime i update data the value in it stay 00.00.00??

 

If you define it correctly it will auto update whenever a change is made

 `timefield` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,

Also there's no such thing as a timespamp, so...

 

Yes, there is..

In this particular case I would recommend using it, since it carries nice automatic initialization and update properties with it.

To add these properties to a TIMESTAMP data type field, you will need to add the CURRENT_TIMESTAMP and ON UPDATE CURRENT_TIMESTAMP attributes to the field's definition.

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.