Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

HTML Forum


You are currently viewing our HTML Forum as a guest. Please register to participate.
Login



Post a Project »

Find a Professional HTML Freelancer!

Find a Freelancer to help you with your HTML projects

FREE Outsourcing eBook!

Reply
Old 03-25-2006, 09:53 AM Calendar help
Junior Talker

Posts: 3
Trades: 0
Ok I am trying to create a calendar on a web page and I am getting no where.. Does anyone know of any good calendar creation programs that are free? Or any coding for it??? Please I need help!!! LOL
Lost in coding!
sspryte
Sspryte is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 03-25-2006, 03:04 PM Re: Calendar help
chrishirst's Avatar
Missing! presumed drunk.

Posts: 42,383
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
using what code ?

php, asp, coldfusion, python, perl, javascript ?
__________________
Chris. ->>
Please login or register to view this content. Registration is FREE
<<-

A foolish consistency is the hobgoblin of little minds
Thought for today:- Is SEO the only industry where all the cowboys are Indians?
chrishirst is online now
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 03-26-2006, 01:21 AM Re: Calendar help
Junior Talker

Posts: 3
Trades: 0
Since I am fairly new to webpage desgin....Html! LOL That is the easiest one. I am also using front page to create a page. Trying to put a calendar up on a page so I can let members know what is happening where and when. Would love for it to have mouse over boxes that had more information in them for each day.
Sspryte
Sspryte is offline
Reply With Quote
View Public Profile
 
Old 03-26-2006, 02:17 AM Re: Calendar help
chrishirst's Avatar
Missing! presumed drunk.

Posts: 42,383
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
rightio then,

You need a database of some kind and server side code in that case.
You need to find out what your host supports, then you can start looking.
__________________
Chris. ->>
Please login or register to view this content. Registration is FREE
<<-

A foolish consistency is the hobgoblin of little minds
Thought for today:- Is SEO the only industry where all the cowboys are Indians?
chrishirst is online now
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 03-27-2006, 04:08 AM Re: Calendar help
ChipJohns's Avatar
I don't know! Do you?

Posts: 488
Name: Chip Johns
Location: Savannah Georgia
Trades: 0
hi Sspryte,

what is going to be the purpose of the calender? does it need to be updated online or is it just going to show some type of schedule that you will only change one a month or so? Is it going to be a functional daytimer?

As Chris mentioned you will probably need a database if you require a higher degeree of functionality.

If not you can create a calendar from an html table...
ChipJohns is offline
Reply With Quote
View Public Profile Visit ChipJohns's homepage!
 
Old 03-27-2006, 09:42 PM Re: Calendar help
Junior Talker

Posts: 3
Trades: 0
I just want to let viewers (members) know about upcoming events. And it wil probably only be changed about onc e a week or so.
Sspryte
Sspryte is offline
Reply With Quote
View Public Profile
 
Old 03-27-2006, 11:01 PM Re: Calendar help
ChipJohns's Avatar
I don't know! Do you?

Posts: 488
Name: Chip Johns
Location: Savannah Georgia
Trades: 0
You can just build a calendar in a table yourself and easily update it, if only a couple times a week.

Code:
<table width="700" border="1" cellspacing="0" cellpadding="0">
<tr bgcolor="#999999">
<th width="100">Sunday</th>
<th width="100">Monday</th>
<th width="100">Tuesday</th>
<th width="100">Wednesday</th>
<th width="100">Thursday</th>
<th width="100">Friday</th>
<th width="100">Saturday</th>
</tr>
<tr align="right" bgcolor="#999999">
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
<td>5</td>
<td>6</td>
<td>7</td>
</tr>

<tr align="center" valign="middle" bgcolor="#CCCCCC">
<td height="60">&nbsp;</td>
<td height="60">&nbsp;</td>
<td height="60">&nbsp;</td>
<td height="60">&nbsp;</td>
<td height="60">&nbsp;</td>
<td height="60">&nbsp;</td>
<td height="60">&nbsp;</td>
</tr>


<tr align="right" bgcolor="#999999">
<td>8</td>
<td>9</td>
<td>10</td>
<td>11</td>
<td>12</td>
<td>13</td>
<td>14</td>
</tr>

<tr align="center" valign="middle" bgcolor="#CCCCCC">
<td height="60">&nbsp;</td>
<td height="60">&nbsp;</td>
<td height="60">&nbsp;</td>
<td height="60">&nbsp;</td>
<td height="60">&nbsp;</td>
<td height="60">&nbsp;</td>
<td height="60">&nbsp;</td>
</tr>


<tr align="right" bgcolor="#999999">
<td>15</td>
<td>16</td>
<td>17</td>
<td>18</td>
<td>19</td>
<td>20</td>
<td>21</td>
</tr>

<tr align="center" valign="middle" bgcolor="#CCCCCC">
<td height="60">&nbsp;</td>
<td height="60">&nbsp;</td>
<td height="60">&nbsp;</td>
<td height="60">&nbsp;</td>
<td height="60">&nbsp;</td>
<td height="60">&nbsp;</td>
<td height="60">&nbsp;</td>
</tr>


<tr align="right" bgcolor="#999999">
<td>22</td>
<td>23</td>
<td>24</td>
<td>25</td>
<td>26</td>
<td>27</td>
<td>28</td>
</tr>

<tr align="center" valign="middle" bgcolor="#CCCCCC">
<td height="60">&nbsp;</td>
<td height="60">&nbsp;</td>
<td height="60">&nbsp;</td>
<td height="60">&nbsp;</td>
<td height="60">&nbsp;</td>
<td height="60">&nbsp;</td>
<td height="60">&nbsp;</td>
</tr>


<tr align="right" bgcolor="#999999">
<td>30</td>
<td>31</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>

<tr align="center" valign="middle" bgcolor="#CCCCCC">
<td height="60">&nbsp;</td>
<td height="60">&nbsp;</td>
<td height="60">&nbsp;</td>
<td height="60">&nbsp;</td>
<td height="60">&nbsp;</td>
<td height="60">&nbsp;</td>
<td height="60">&nbsp;</td>
</tr>

</table>
ChipJohns is offline
Reply With Quote
View Public Profile Visit ChipJohns's homepage!
 
Reply     « Reply to Calendar help
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.24349 seconds with 12 queries