Ask Question Forum:
Model Library:2025-02-08 Updated:A.I. model is online for auto reply question page
C
O
M
P
U
T
E
R
2
8
Show
#
ASK
RECENT
←
- Underline
- Bold
- Italic
- Indent
- Step
- Bullet
- Quote
- Cut
- Copy
- Paste
- Table
- Spelling
- Find & Replace
- Undo
- Redo
- Link
- Attach
- Clear
- Code
Below area will not be traslated by Google,you can input code or other languages
Hint:If find spelling error, You need to correct it,1 by 1 or ignore it (code area won't be checked).
X-position of the mouse cursor
Y-position of the mouse cursor
Y-position of the mouse cursor
Testcursor
caretPos
Attachment:===
Asked by knowlton
at 2024-10-05 21:21:58
Point:500 Replies:10 POST_ID:828762USER_ID:11666
Topic:
PHP Scripting Language;;
I am looking for free scripts to implement a community calendar on a web page using php.
I already tried this one:
LuCal free calendar
and I did not like it.
But it demonstrates what I am wanting, in general. A public facing calendar that utilizes MySQL to store the events.
I just want a script that is a bit further along. I am new to the PHP community. I welcome recommendations.
Note: I do not necessarily want the calendar to FILL the entire web page.
I already tried this one:
LuCal free calendar
and I did not like it.
But it demonstrates what I am wanting, in general. A public facing calendar that utilizes MySQL to store the events.
I just want a script that is a bit further along. I am new to the PHP community. I welcome recommendations.
Note: I do not necessarily want the calendar to FILL the entire web page.
Author: knowlton replied at 2024-10-17 14:50:14
Thanks.
Ended up embedding google calendar.
Ended up embedding google calendar.
Author: knowlton replied at 2024-10-09 07:37:06
I will try it again.
But I swear, I followed the readme!!
Tom
But I swear, I followed the readme!!
Tom
Expert: dejaanbu replied at 2024-10-08 22:11:30
ok.. i tested it for you and got it working, simply followed the readme...
a. create a database("test"), and execute setup.sql
b. change php/dbconfig.php to fit yours (in my case, the only change is updating the db name to "test")
c. rename edit.db.php to edit.php, php/datafeed.db.php to php/datafeed.php (you may backup edit.php/datafeed.php - i renamed them to edit_old and datafeed_old)
a. create a database("test"), and execute setup.sql
b. change php/dbconfig.php to fit yours (in my case, the only change is updating the db name to "test")
c. rename edit.db.php to edit.php, php/datafeed.db.php to php/datafeed.php (you may backup edit.php/datafeed.php - i renamed them to edit_old and datafeed_old)
Expert: dejaanbu replied at 2024-10-08 21:55:57
i have used wdCalendar 2 years ago in an Asp.Net project..i couldnt remember anything now...
but in some place, they should have assigned the random example events in their code. Please follow the docs, you'll get an idea..
but in some place, they should have assigned the random example events in their code. Please follow the docs, you'll get an idea..
Author: knowlton replied at 2024-10-07 16:10:09
Hello?
Author: knowlton replied at 2024-10-06 22:34:21
djaanbu,
Have you used the wdCalendar, yourself?
I cannot get it to stop generating random events when you click the "Refresh List" button, despite having followed the directions in the readme file.
Have you used the wdCalendar, yourself?
I cannot get it to stop generating random events when you click the "Refresh List" button, despite having followed the directions in the readme file.
Assisted Solution
Expert: Ray Paseur replied at 2024-10-06 06:09:00
125 points EXCELLENT
If you're looking for something you can get running quickly without any programming knowledge, consider WordPress. I am sure it has calendar plug-ins. If you want to learn how PHP handles DATETIME information, this article will help.
http://www.experts-exchange.com/Web_Development/Web_Languages-Standards/PHP/A_201-Handling-date-and-time-in-PHP-and-MySQL.html
http://www.experts-exchange.com/Web_Development/Web_Languages-Standards/PHP/A_201-Handling-date-and-time-in-PHP-and-MySQL.html
Assisted Solution
Expert: duncanb7 replied at 2024-10-05 23:20:13
125 points EXCELLENT
I think you need to know how to do PHP and Mysql in PHP language.Otherwsie that
is hard to design your calender to fit all of your requirement.
I suggest the following steps to finish your work
1- Using PHP curl to extract the page of the time/date provider webiste
such as http://www.timeanddate.com/calendar/?year=2012&country=42
and you can program to your calendar outlook you want.
After that, you can display your php calendar file such as
www.mysite.com/calendar.php?region=United%20 States
where region is set in PHP for $_GET['region'] variable
2- IN PHP script, all day in each month will have a tag
with onclick function which will call other php script, saveevent.php, to
save all daily event into your calendar Mysql database
3-In calendar, when you move your mouse to day in the month,
it will display all preivous recored daily event by Ajax to
call other php script, getevent.php.
Learn Php and create Mysql database and its script is easy , just one or two
days,you will become familar with.
Hope you will help
Duncan
is hard to design your calender to fit all of your requirement.
I suggest the following steps to finish your work
1- Using PHP curl to extract the page of the time/date provider webiste
such as http://www.timeanddate.com/calendar/?year=2012&country=42
and you can program to your calendar outlook you want.
After that, you can display your php calendar file such as
www.mysite.com/calendar.php?region=United%20 States
where region is set in PHP for $_GET['region'] variable
2- IN PHP script, all day in each month will have a tag
with onclick function which will call other php script, saveevent.php, to
save all daily event into your calendar Mysql database
3-In calendar, when you move your mouse to day in the month,
it will display all preivous recored daily event by Ajax to
call other php script, getevent.php.
Learn Php and create Mysql database and its script is easy , just one or two
days,you will become familar with.
Hope you will help
Duncan
Assisted Solution
Expert: HagayMandel replied at 2024-10-05 23:12:30
125 points EXCELLENT
Here is a fully functioning PHP calendar.
Accepted Solution
Expert: dejaanbu replied at 2024-10-05 23:04:04
125 points EXCELLENT