Symbianize Forum

Most of our features and services are available only to members, so we encourage you to login or register a new account. Registration is free, fast and simple. You only need to provide a valid email. Being a member you'll gain access to all member forums and features, post a message to ask question or provide answer, and share or find resources related to mobile phones, tablets, computers, game consoles, and multimedia.

All that and more, so what are you waiting for, click the register button and join us now! Ito ang website na ginawa ng pinoy para sa pinoy!

Pa help po sa bidding system ko please :( php+mysql

pokzkie

Novice
Advanced Member
Messages
28
Reaction score
0
Points
26
:help: Project ko po sa school, bali yung system ko Online Auction siya... di ko lang alam pano gawin yung bidding functions. pa help po please :((

ito po scenario:
mag a-auction yung isang user ng item then pipili siya kung ilang days yung auctioning nung item, then yung ibang user mag bibidd ng price, after matapos yung days mapipili yung pinaka highest bidder as winner nung item. pa help po pleaseeee :upset:
 

san po database nito?

- - - Updated - - -

mga master pa help naman po sa code na to:

if ($row['duration'] > 0) {
$todaysDate = date("Y-m-d h:i:s");
$duration_date = $row['date_added'];
$date1=date_create("$todaysDate");
$date2=date_create("$duration_date");
$diff=date_diff($date1,$date2);
$expired = $row['duration'] - $diff->format("%a days and %H hours and %i minutes and %s seconds");?>
<td><?php echo "$expired Day(s)"; ?></td>
<?php if ($expired <= 0) {
$id = $row['id'];
updatestatus($id);
} ?>

<?php } ?>

bali gusto ko sana e post yung remaining days, hours, minutes and seconds kaso yung remaining days lang po yung na sshow.
 
Back
Top Bottom