nico, thank you. The html form really is just a simple form
Quote:
<form action="predictions.php" method="post"><input type=hidden value="do"><input type="hidden" value="dopredict">
then I have the different fields which are dynamic
<input type=text value=Home>
<input type=text value=Away>
and the submit button
|
see, since this is for sports, I created two custom fields and named them Home and Away, and I get them with $customtitle for value. So the boxes are always right (they are in calendar_showevents_customfieldsbit)
The 2 templates that I am working with are calendar_showeventsbits
and calendar_showevents_customfields. The form is in the showevents and the fields are in the custom fields.
Since there was no hook for customfields, I had to do all the coding the php, at the foreach loop.
and my current database structure (which will be extended but has nothing to do with the ajax part)
PHP Code:
id int(10) No auto_increment
eventid int(10) No 0
userid int(10) No 0
homepred int(3) No -1
awaypred int(3) No -1
homeactual int(3) No -1
awayactual int(3) No -1
hometeam varchar(50) No
awayteam varchar(50) No
iswinner tinyint(1) No 0
homeactual, awayactual and iswinner are not to be used with ajax. Those are moderator input and iswinner is dynamic that I use in leaderboard, results, stats etc...