I need some help with an event list module for PHPNuke 7.x.
This is how we need it to work. It is going to be used on a Car Show site.
The User will enter the Submit area and enter the following information that we need to store in a database.
Name of Show
Date of show
Time of Show
Contact Phone Number
Dealer
#of days
City
State
Type
Points
Comments -to give directions and what ever.
They would then click submit and it would then be held for admin approval.
If approved would be posted in this fashion -http://www.soundoff.org/cgi-bin/schedule/display.cgi?search=1&display_all=1
If you notice at the bottom there is a search function- we will need this function as well.
I can be reached on MSN - my MSN ID is in my profile.
Thank you in advance.
*********************************************************
Note:
I have edited the html source that was there- I am now only looking for code that I need between the two html header stuff- I am including the code I have at the moment.
<html>
<head>
<title>USACi Events</title>
</head>
<body text="#C0C0C0" bgcolor="#000000">
<style type="text/css">
<!--
A:link {color: white;text-decoration: none}
A:visited {color: rgb(160, 160, 255);text-decoration: none}
A:hover {color: red;text-decoration: none}
-->
</style>
<body>
<P>
<table border="0" width=98%" cellspacing="0" cellpadding="0">
<tr>
<td bgcolor="800000"><font face="Verdana, Arial, Helvetica, sans-serif" size="2" color="#C0C0C0"><b>Search Results</b></font></td>
</tr>
<tr>
<td bgcolor="000000"><img src="space.gif" width="1" height="2" vspace="0" hspace="0"></td>
</tr>
</table>
<P>
<table width=95% cellpadding=1 cellspacing=1 border=0>
<tr bgcolor="#800000">
<th>
<font size="1" face="Verdana, Arial, Helvetica, sans-serif" color="#ffffff">
Date
</font>
</th>
<th>
<font size="1" face="Verdana, Arial, Helvetica, sans-serif" color="#ffffff">
Days
</font>
</th>
<th>
<font size="1" face="Verdana, Arial, Helvetica, sans-serif" color="#ffffff">
Dealer
</font>
</th>
<th>
<font size="1" face="Verdana, Arial, Helvetica, sans-serif" color="#ffffff">
City
</font>
</th>
<th>
<font size="1" face="Verdana, Arial, Helvetica, sans-serif" color="#ffffff">
State
</font>
</th>
<th>
<font size="1" face="Verdana, Arial, Helvetica, sans-serif" color="#ffffff">
Number
</font>
</th>
<th>
<font size="1" face="Verdana, Arial, Helvetica, sans-serif" color="#ffffff">
Type
</font>
</th>
<th>
<font size="1" face="Verdana, Arial, Helvetica, sans-serif" color="#ffffff">
Points
</font>
</th>
</tr>
**********************
HTML header above
**********************
PHP to generate the list from the database.
**********************
HTML footer below
**********************
<P> <form method=post action="display.cgi">
<table border="0" width=98%" cellspacing="0" cellpadding="0">
<tr>
<td bgcolor="800000"><font face="Verdana, Arial, Helvetica, sans-serif" size="2" color="#C0C0C0"><b>Event Search</b></font></td>
</tr>
<tr>
<td bgcolor="000000"><img src="space.gif" width="1" height="2" vspace="0" hspace="0"></td>
</tr>
<tr>
<td>
<font size="2" face="Verdana, Arial, Helvetica, sans-serif">
<ul>
<br>
Choose one field to search.<p>
Example of what can be entered in each field:<br>
<table BORDER=0 CELLSPACING=5 CELLPADDING=0 WIDTH="75%" >
<tr ALIGN=CENTER VALIGN=CENTER>
<td><b><font face="Arial"><font size=-1>Date</font></font></b></td>
<td><b><font face="Arial"><font size=-1># of Days</font></font></b></td>
<td><b><font face="Arial"><font size=-1>Dealer</font></font></b></td>
<td><b><font face="Arial"><font size=-1>City</font></font></b></td>
<td><b><font face="Arial"><font size=-1>State</font></font></b></td>
<td><b><font face="Arial"><font size=-1>Number</font></font></b></td>
<td><b><font face="Arial"><font size=-1>Type</font></font></b></td>
<td><b><font face="Arial"><font size=-1>Points</font></font></b></td>
</tr>
<tr ALIGN=LEFT VALIGN=TOP>
<td><font face="Arial"><font size=-1>2/30/2002</font></font></td>
<td><font face="Arial"><font size=-1><center>1 or 2</center></font></font></td>
<td><font face="Arial"><font size=-1>Sound Pounders</font></font></td>
<td><font face="Arial"><font size=-1>Fall</font></font></td>
<td><font face="Arial"><font size=-1>TX</font></font></td>
<td><font face="Arial"><font size=-1>713-345-6654</font></font></td>
<td><font face="Arial"><font size=-1>FE - Outlaw SPL and SQ</font></font>
<br><font face="Arial"><font size=-1>SPL - Outlaw SPL Only</font></font>
<br><font face="Arial"><font size=-1>dB - dB Drag Event</font></font>
<br><font face="Arial"><font size=-1>FE+CS - SPL, SQ & Carshow</font></font></td>
<td><font face="Arial"><font size=-1>SP - Single Pts</font></font>
<br><font face="Arial"><font size=-1>DP - Double Pts</font></font>
<br><font face="Arial"><font size=-1>TP - Triple Pts</font></font>
<br><font face="Arial"><font size=-1>R - Regional</font></font>
</font></td>
</tr>
</table>
<b>Search by Keywords:</b><BR>
<INPUT type="text" name="searchtext" size=60 maxlength=60>
<BR>Search for results containing <INPUT type="radio" name="searchtype" value="any" checked> ANY or <INPUT type="radio" name="searchtype" value="all"> ALL of these words or phrases.
<P>
<P>
<center>
<input type=hidden name="search" value="1">
<input type=submit value="Search">
</center>
</form>
</ul>
</td>
</tr>
</table>
<P><P></body></html>
<P>
This is WAY over my head but I need this for the site.