<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>Basic PHP Scripts Support Site</title>
        <description>Welcome to the support site for Basic PHP Scripts</description>
        <link>http://www.mevin.com/forum/index.php</link>
        <lastBuildDate>Thu, 17 May 2012 17:51:35 -0700</lastBuildDate>
        <generator>Phorum 5.2.13</generator>
        <item>
            <guid>http://www.mevin.com/forum/read.php?2,195,195#msg-195</guid>
            <title>Unable to select database (1 reply)</title>
            <link>http://www.mevin.com/forum/read.php?2,195,195#msg-195</link>
            <description><![CDATA[ I setup these :-<br />
<br />
// Database info<br />
<br />
// Your MySQL host<br />
$dbhost='localhost';<br />
<br />
//Your MySQL username<br />
$dbuser='';<br />
<br />
//Your MySQL password<br />
$dbpass='';<br />
<br />
//Your MySQL database name<br />
$dbname='dbname';<br />
<br />
//Maximum number of displayed events<br />
$maxnum='10';<br />
<br />
And create database of name &quot;dbname&quot; with no tables in it, but it is showing unable to select database.]]></description>
            <dc:creator>goravgorg</dc:creator>
            <category>PHP Events Lister</category>
            <pubDate>Mon, 02 Apr 2012 11:01:33 -0700</pubDate>
        </item>
        <item>
            <guid>http://www.mevin.com/forum/read.php?2,191,191#msg-191</guid>
            <title>RSS Feed (1 reply)</title>
            <link>http://www.mevin.com/forum/read.php?2,191,191#msg-191</link>
            <description><![CDATA[ Hello, I have just started using Events Lister and very happy.  I searched the help documents and the forum, but didn't find any reference of where to find the RSS Feed.  I set it up during initial setup, then confirmed it as the Admin in the Edit SEMConfig. All looked good, but I can't find the feed anywhere in the calendar folder or any subfolders.  What am I missing?]]></description>
            <dc:creator>Riverwell</dc:creator>
            <category>PHP Events Lister</category>
            <pubDate>Tue, 28 Feb 2012 11:58:24 -0700</pubDate>
        </item>
        <item>
            <guid>http://www.mevin.com/forum/read.php?2,186,186#msg-186</guid>
            <title>Required Location field (3 replies)</title>
            <link>http://www.mevin.com/forum/read.php?2,186,186#msg-186</link>
            <description><![CDATA[ Thanks for the great script.<br />
 I am using it for a restaurant so the location is almost always the same. What is needed to remove the required error checking for the location field? I do not want to remove it completely because there could be a event outside of the restaurant.]]></description>
            <dc:creator>cjswebservices</dc:creator>
            <category>PHP Events Lister</category>
            <pubDate>Thu, 06 Oct 2011 12:38:15 -0700</pubDate>
        </item>
        <item>
            <guid>http://www.mevin.com/forum/read.php?2,183,183#msg-183</guid>
            <title>Filter events (1 reply)</title>
            <link>http://www.mevin.com/forum/read.php?2,183,183#msg-183</link>
            <description><![CDATA[ Hi,<br />
<br />
Is it possible to only show events that are using the same name?<br />
<br />
For example:<br />
index.php &gt; show all events<br />
page2.php &gt; only show events named 'event2'<br />
<br />
Thanks in advance.]]></description>
            <dc:creator>Tiberian</dc:creator>
            <category>PHP Events Lister</category>
            <pubDate>Wed, 03 Aug 2011 08:54:50 -0700</pubDate>
        </item>
        <item>
            <guid>http://www.mevin.com/forum/read.php?2,174,174#msg-174</guid>
            <title>Hacked (7 replies)</title>
            <link>http://www.mevin.com/forum/read.php?2,174,174#msg-174</link>
            <description><![CDATA[ Our events page has been hacked. Did not record any details as we wanted to get back up quickly. I did see that the hacker had created a username, which I deleted directly from the database via MySQL Admin. The hacker appeared to have overwritten most of the current events with a hack notice on a black background.<br />
<br />
I will install the new reset.php in the hope that that limits the hackers options. <br />
<br />
Any other advice about security would be welcome.]]></description>
            <dc:creator>zanteian</dc:creator>
            <category>PHP Events Lister</category>
            <pubDate>Mon, 01 Aug 2011 08:36:32 -0700</pubDate>
        </item>
        <item>
            <guid>http://www.mevin.com/forum/read.php?2,170,170#msg-170</guid>
            <title>Change Date Format from US to UK (no replies)</title>
            <link>http://www.mevin.com/forum/read.php?2,170,170#msg-170</link>
            <description><![CDATA[ Greetings All,<br />
<br />
If your wondering how to change the date format from America to United Kingdom (m/d/yyyy to /d/m/yyyy) here the code<br />
<br />
Open /event/Index.php <br />
<b>Search for:</b><br />
<pre class="bbcode">
if (($hour_end =='') &amp;&amp; ($minute_end =='') &amp;&amp; ($ampm_end =='')) { $end_time ='';}
else { $end_time= &quot; - $hour_end:$minute_end $ampm_end&quot;; }

if (($month_end =='') &amp;&amp; ($day_end =='') &amp;&amp; ($year_end =='')) { $end_date ='';}
else { $end_date= &quot;- $month_end/$day_end/$year_end&quot;; }

// Here is where we actually print out the events.  
echo &quot;
&lt;B&gt;$event&lt;/B&gt;&lt;br&gt;
Location: $location &lt;br /&gt;
Date: $month/$day/$year $end_date &lt;br&gt;
&lt;br&gt;&quot;; 
$i++;
}</pre>
<br />
<br />
<b>Replace with:</b><br />
<pre class="bbcode">
if (($hour_end =='') &amp;&amp; ($minute_end =='') &amp;&amp; ($ampm_end =='')) { $end_time ='';}
else { $end_time= &quot; - $hour_end:$minute_end $ampm_end&quot;; }

if (($day_end =='') &amp;&amp; ($month_end =='') &amp;&amp; ($year_end =='')) { $end_date ='';}
else { $end_date= &quot;- $day_end/$month_end/$year_end&quot;; }

// Here is where we actually print out the events.  Date: $month/$day/$year $end_date &lt;br&gt;
echo &quot;
&lt;B&gt;$event&lt;/B&gt;&lt;br&gt;
Location: $location &lt;br /&gt;
Date: $day/$month/$year $end_date &lt;br&gt;
&lt;br&gt;&quot;; 
$i++;
}</pre>
<br />
NOTE: May sure you create a backup file before trying this - Also this will only change the output display for users view and not the admin area.<br />
<br />
Hope it helps :)]]></description>
            <dc:creator>Valace</dc:creator>
            <category>PHP Events Lister</category>
            <pubDate>Fri, 24 Jun 2011 03:10:39 -0700</pubDate>
        </item>
        <item>
            <guid>http://www.mevin.com/forum/read.php?2,169,169#msg-169</guid>
            <title>time order issue (2 replies)</title>
            <link>http://www.mevin.com/forum/read.php?2,169,169#msg-169</link>
            <description><![CDATA[ I know this is nit-picky but I've tried figuring it out and can't.<br />
Events that are on the same date, but start at 12pm show up after dates that start at 7pm.  Is there an easy way to change that order without having to use a 24 hour clock?<br />
<br />
Any thoughts or ideas would be appreciated.<br />
<br />
I've also modified the index.php a bit.  Here's what I have:<br />
<br />
<pre class="bbcode">
$query=&quot;SELECT * FROM events WHERE
(year &gt;= $current_year AND month &gt; $current_month)
OR (year &gt;= $current_year AND month = $current_month AND day &gt;= $current_day)
OR (year_end &gt;= $current_year AND month_end = $current_month AND day_end &gt;= $current_day)
OR (year &gt; $current_year)

OR (year_show &gt;= $current_year AND month_show &gt; $current_month)
OR (year_show &gt;= $current_year AND month_show = $current_month AND day_show &gt;= $current_day)
OR (year_show &gt; $current_year)
ORDER BY year, month, day, ampm, hour LIMIT 0, $maxnum&quot;;</pre>
<br />
and<br />
<br />
<pre class="bbcode">
//replaces carriage returns with html line breaks
if ($html ==&quot;0&quot;) {
$description=preg_replace(&quot;/\n/&quot;,&quot;&lt;br&gt;&quot;, ($description));
}

// removes the first zero from the hour.  We need the zero at first, to keep the numbering in order.
//Of course the number ten needs the zero left in.
if ($hour !=&quot;10&quot;) {
$hour=preg_replace(&quot;/0/&quot;,&quot;&quot;, ($hour));
}

if ($hour_end !=&quot;10&quot;) {
$hour_end=preg_replace(&quot;/0/&quot;,&quot;&quot;, ($hour_end));
}

if (($hour_end =='') &amp;&amp; ($minute_end =='') &amp;&amp; ($ampm_end =='')) { $end_time ='';}
else { $end_time= &quot; to $hour_end:$minute_end $ampm_end&quot;; }

if (($month_end =='') &amp;&amp; ($day_end =='') &amp;&amp; ($year_end =='')) { $end_date ='';}
else { $end_date= &quot;to $month_end/$day_end/$year_end&quot;; }

// Here is where we actually print out the events.
$date_string = &quot;$month/$day/$year&quot;;
$weekday = date('l', strtotime($date_string));
echo &quot;
&lt;tr&gt;
&lt;td&gt;$weekday&lt;br&gt;$month/$day/$year&lt;br&gt;&lt;br&gt;$hour:$minute $ampm $end_time&lt;/td&gt;
&lt;td&gt;$event&lt;/td&gt;
&lt;td&gt;$location&lt;br&gt;$phone&lt;/td&gt;
&lt;td&gt;$description&lt;br&gt;&lt;a href='$link' target='_blank'&gt;$link_name&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&quot;;
// looks for the next event id and if it exists, prints it out.
$i++;
}
echo &quot;&lt;/table&gt;&lt;/center&gt;&quot;;

</pre>]]></description>
            <dc:creator>derwood</dc:creator>
            <category>PHP Events Lister</category>
            <pubDate>Mon, 27 Jun 2011 20:42:00 -0700</pubDate>
        </item>
        <item>
            <guid>http://www.mevin.com/forum/read.php?2,166,166#msg-166</guid>
            <title>Overall Security (1 reply)</title>
            <link>http://www.mevin.com/forum/read.php?2,166,166#msg-166</link>
            <description><![CDATA[ I am in the process of having my website updated  and to include an event scheduler for the internet radio station I work for.<br />
You will be pleased to note that yours was the most suitable for our needs, albeit with modifications  to the basic code.<br />
My colleague has installed an adapted copy of your Event Scheduler and continues to work on some of the features it offers, so that it suits our purposes more adequately.<br />
However. he is a little concerned about the overall security  of the scheduler,<br />
Can you tell me what measures are in place to protect the data of events, user names and passwords etc.<br />
I'm sure you are aware that Internet radio is becoming more and more popular, as is it's competitiveness therefore security is a high priority in this field.<br />
if you wish to view my website and the scheduler, partly in action, visit [<a href="http://www.busyelf.net/DJ/" rel="nofollow" >www.busyelf.net</a>]]]></description>
            <dc:creator>BusyElf</dc:creator>
            <category>PHP Events Lister</category>
            <pubDate>Tue, 03 May 2011 15:53:14 -0700</pubDate>
        </item>
        <item>
            <guid>http://www.mevin.com/forum/read.php?2,159,159#msg-159</guid>
            <title>Add Event error (4 replies)</title>
            <link>http://www.mevin.com/forum/read.php?2,159,159#msg-159</link>
            <description><![CDATA[ I have installed the script and used it on several different websites without issue.<br />
On my most recent install, everything seemed to install correctly and the display pages are working fine.<br />
But when I try to add and event in the Admin interface, after filling out the form and submitting, i get a &quot;Bad Referrer&quot; error.<br />
<br />
Any suggestions on this?   Thanks.]]></description>
            <dc:creator>deerpathco</dc:creator>
            <category>PHP Events Lister</category>
            <pubDate>Tue, 19 Apr 2011 13:21:39 -0700</pubDate>
        </item>
        <item>
            <guid>http://www.mevin.com/forum/read.php?2,158,158#msg-158</guid>
            <title>Partial Description or Excerpts on Page (2 replies)</title>
            <link>http://www.mevin.com/forum/read.php?2,158,158#msg-158</link>
            <description><![CDATA[ GREAT script. However, I need a cross between index &amp; index1. In other words, I would like to show 1 or 2 lines of the description (for large posts) and the rest (or the entire event) using a &quot;read more&quot; link. Something similar to the way you post excerpts in wordpress. Could you point me in the right direction? Thanks. Again GREAT script.]]></description>
            <dc:creator>acorn</dc:creator>
            <category>PHP Events Lister</category>
            <pubDate>Tue, 19 Apr 2011 18:49:00 -0700</pubDate>
        </item>
        <item>
            <guid>http://www.mevin.com/forum/read.php?2,154,154#msg-154</guid>
            <title>End time (1 reply)</title>
            <link>http://www.mevin.com/forum/read.php?2,154,154#msg-154</link>
            <description><![CDATA[ I found that the end time is a date only feature do you have any plans to upgrade this to a date &amp; time feature in newer versions<br />
<br />
Just asking Love the software <br />
Thanks for all your work<br />
<br />
Carl H Snook]]></description>
            <dc:creator>carlhsnook</dc:creator>
            <category>PHP Events Lister</category>
            <pubDate>Mon, 04 Apr 2011 15:03:14 -0700</pubDate>
        </item>
        <item>
            <guid>http://www.mevin.com/forum/read.php?2,152,152#msg-152</guid>
            <title>Update and Copy functions not working after making modifications (no replies)</title>
            <link>http://www.mevin.com/forum/read.php?2,152,152#msg-152</link>
            <description><![CDATA[ Hello:<br />
<br />
First, let me thank you for this great little script.  I finally settled on your script after looking at scores of event listing scripts... Nothing else I found included the desired features.   I adapted it for a friend -- a professional musician wanting to display a simple listing of his upcoming performances.  My friend simply wanted to create a simple list in tabular format, displaying the date, city and state, and the venue for his upcoming shows.  I am not a php script writer ... and by no means an expert.  But, I was able to successfully modify yours to display the desired information.  Just to give you an idea of what we were trying to accomplish... <br />
<br />
Here is what I did:<br />
<br />
(1) I added several classes to the events table AND modified the related files.   I renamed the index1.php file which I KEPT, but don't use.  I named it &quot;quickview.php&quot;  The result can be viewed here:   <a href="http://www.ryankirbymusic.com/shows/quickview.php" rel="nofollow" >http://www.ryankirbymusic.com/shows/quickview.php</a><br />
<br />
(2) I modified the index.php file (renamed it &quot;viewall.php&quot;)  <br />
     The result can be viewed here:<br />
     <a href="http://www.ryankirbymusic.com/shows/viewall.php" rel="nofollow" >http://www.ryankirbymusic.com/shows/viewall.php</a>     <br />
        <br />
(3) I modified the database, and went through all the other files, adding the new classes to the list.<br />
<br />
In the admin area, it was necessary to modify form.php, add.php, db.php, and several others in order to get everything to re-connect to the database.  I was able to get everything else working correctly with the exception of the Update function, and the Copy function.  Therefore, <b>Update</b> and <b>Copy</b> are not working, and after pulling my hair out for several weeks, I cannot figure out how to get them to work.  <br />
Can you take a look at my files, and see if you can help me figure out why these two functions are not working.<br />
<br />
I would appreciate any help you can give me in getting these two functions to work.  Because I am not a programmer or script-writer, I just simply have reached an impasse and cannot figure out what to do to fix this.    I'm pasting the contents of my update and copy php files into this post:<br />
<br />
<b>UPDATE PHP</b><br />
<br />
&lt;?php<br />
/*<br />
    This file is a part of Basic PHP Event Lister.  Copyright (c) 2008 Mark MacCollin, Mevin Productions, www.mevin.com<br />
<br />
    This program is free software; you can redistribute it and/or modify<br />
    it under the terms of the GNU General Public License as published by<br />
    the Free Software Foundation; either version 2 of the License, or<br />
    (at your option) any later version.<br />
<br />
    This program is distributed in the hope that it will be useful,<br />
    but WITHOUT ANY WARRANTY; without even the implied warranty of<br />
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the<br />
    GNU General Public License for more details.<br />
<br />
    You should have received a copy of the GNU General Public License<br />
    along with this program; if not, write to the Free Software<br />
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA<br />
*/ <br />
<br />
	require_once('common.php');<br />
	checkUser();<br />
?&gt;<br />
<br />
&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;<br />
&quot;[<a href="http://www.w3.org/TR/html4/loose.dtd&quot;&gt" rel="nofollow" >www.w3.org</a>];<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot;&gt;<br />
&lt;link href=&quot;admin.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;&gt;<br />
&lt;title&gt;Update Show&lt;/title&gt;<br />
&lt;link href=&quot;admin.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;&gt;<br />
<br />
&lt;body&gt;<br />
&lt;?php<br />
<br />
$show_id=$_GET['show_id'];<br />
include(&quot;config.php&quot;);<br />
include ('db.php');<br />
<br />
if (!isset($_POST['submit'])) { ?&gt;<br />
<br />
&lt;h1 align=&quot;center&quot;&gt;Update Show: &lt;?php echo $show_name; ?&gt;  &lt;/h1&gt;<br />
<br />
&lt;?php include ('form.php'); ?&gt;<br />
<br />
&lt;/table&gt;<br />
&lt;/center&gt;<br />
<br />
&lt;?php <br />
}<br />
 else {<br />
<br />
$ud_show_name=$_POST['ud_show_name'];<br />
$ud_hour=$_POST['ud_hour'];<br />
$ud_minute=$_POST['ud_minute'];<br />
$ud_ampm=$_POST['ud_ampm'];<br />
$ud_month=$_POST['ud_month'];<br />
$ud_day=$_POST['ud_day'];<br />
$ud_year=$_POST['ud_year'];<br />
$ud_hour_end=$_POST['ud_hour_end'];<br />
$ud_minute_end=$_POST['ud_minute_end'];<br />
$ud_ampm_end=$_POST['ud_ampm_end'];<br />
$ud_month_end=$_POST['ud_month_end'];<br />
$ud_day_end=$_POST['ud_day_end'];<br />
$ud_year_end=$_POST['ud_year_end'];<br />
$ud_month_show=$_POST['ud_month_show'];<br />
$ud_day_show=$_POST['ud_day_show'];<br />
$ud_year_show=$_POST['ud_year_show'];<br />
$ud_venue_name=$_POST['ud_venue_name'];<br />
$ud_venue_address=$_POST['ud_venue_address'];<br />
$ud_venue_city=$_POST['ud_venue_city'];<br />
$ud_venue_state=$_POST['ud_venue_state'];<br />
$ud_venue_postal_code=$_POST['ud_venue_postal_code'];<br />
$ud_venue_country=$_POST['ud_venue_country'];<br />
$ud_email=$_POST['ud_email'];<br />
$ud_phone=$_POST['ud_phone'];<br />
$ud_link=$_POST['ud_link'];<br />
$ud_link_name=$_POST['ud_link_name'];<br />
$ud_admission=$_POST['ud_admission'];<br />
$ud_tix_info=$_POST['ud_tix_info'];<br />
$ud_tix_link=$_POST['ud_tix_link'];<br />
$ud_tix_link_name=$_POST['ud_tix_link_name'];<br />
$ud_show_button=$_POST['ud_show_button'];<br />
$ud_description=$_POST['ud_description'];<br />
$ud_html=$_POST['ud_html'];<br />
<br />
$ud_show_name=preg_replace(&quot;/\'/&quot;,&quot;&amp;#039;&quot;, ($ud_show_name));<br />
$ud_description=preg_replace(&quot;/\'/&quot;,&quot;&amp;#039;&quot;, ($ud_description));<br />
<br />
include(&quot;config.php&quot;);<br />
mysql_connect($dbhost,$dbuser,$dbpass);<br />
mysql_select_db($dbname) or die( &quot;Unable to select database&quot;);<br />
<br />
$query=&quot;UPDATE events SET show_id='$show_id', <br />
show_name='$ud_show_name', <br />
hour='$ud_hour', <br />
minute='$ud_minute', <br />
ampm='$ud_ampm', <br />
hour_end='$ud_hour_end', <br />
minute_end='$ud_minute_end', <br />
ampm_end='$ud_ampm_end', <br />
month='$ud_month', <br />
day='$ud_day', <br />
year='$ud_year', <br />
month_end='$ud_month_end', <br />
day_end='$ud_day_end', <br />
year_end='$ud_year_end', <br />
month_show='$ud_month_show', <br />
day_show='$ud_day_show', <br />
year_show='$ud_year_show', <br />
venue_name='$ud_venue_name', <br />
venue_address='$ud_venue_address', <br />
venue_city='$ud_venue_city', <br />
venue_state='$ud_venue_state', <br />
venue_postal_code='$ud_venue_postal_code', <br />
venue_country='$ud_venue_country', <br />
email='$ud_email', <br />
phone='$ud_phone', <br />
link='$ud_link', <br />
link_name='$ud_link_name', <br />
admission='$ud_admission', <br />
tix_info='$ud_tix_info', <br />
tix_link='$ud_tix_link', <br />
tix_link_name='$ud_tix_link_name', <br />
show_button='$ud_show_button', <br />
description='$ud_description', <br />
html='$ud_html', <br />
WHERE show_id='$show_id'&quot;;<br />
<br />
$rt=mysql_query($query);<br />
<br />
if ($rt) {echo &quot;&lt;center&gt;&lt;h1&gt;Show Updated!&lt;/h1&gt; &lt;/center&gt;&quot;; }<br />
<br />
else { mysql_error(); } <br />
<br />
mysql_close();<br />
<br />
}<br />
<br />
include(&quot;nav.php&quot;); ?&gt;<br />
<br />
&lt;/body&gt;<br />
&lt;/html&gt;<br />
<br />
==============================================================================================<br />
<br />
<br />
<b>COPY PHP</b><br />
<br />
   <br />
&lt;?php<br />
/*<br />
    This file is a part of Basic PHP Event Lister.  Copyright (c) 2008 Mark MacCollin, Mevin Productions, www.mevin.com<br />
<br />
    This program is free software; you can redistribute it and/or modify<br />
    it under the terms of the GNU General Public License as published by<br />
    the Free Software Foundation; either version 2 of the License, or<br />
    (at your option) any later version.<br />
<br />
    This program is distributed in the hope that it will be useful,<br />
    but WITHOUT ANY WARRANTY; without even the implied warranty of<br />
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the<br />
    GNU General Public License for more details.<br />
<br />
    You should have received a copy of the GNU General Public License<br />
    along with this program; if not, write to the Free Software<br />
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA<br />
*/ <br />
<br />
	require_once('common.php');<br />
	checkUser();<br />
?&gt;<br />
<br />
&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;<br />
&quot;[<a href="http://www.w3.org/TR/html4/loose.dtd&quot;&gt" rel="nofollow" >www.w3.org</a>];<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot;&gt;<br />
&lt;link href=&quot;admin.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;&gt;<br />
&lt;title&gt;Copy Show&lt;/title&gt;<br />
&lt;body&gt;<br />
&lt;center&gt;<br />
&lt;?php<br />
<br />
<br />
$show_id=$_GET['show_id'];<br />
include(&quot;config.php&quot;);<br />
include ('db.php');<br />
//Connect To Database<br />
mysql_connect($dbhost,$dbuser,$dbpass) OR DIE ('Unable to connect to database! Please try again later.');<br />
mysql_select_db($dbname) or die( &quot;Unable to select database&quot;);<br />
<br />
$query=&quot; SELECT * FROM events WHERE show_id='$show_id'&quot;;<br />
$result=mysql_query($query);<br />
$num=mysql_numrows($result);<br />
mysql_close();<br />
<br />
$i=0;<br />
while ($i &lt; $num) {<br />
<br />
/* <br />
Assign variables to all our db values.  leaving all the time and date varables blank.  Since<br />
the script is copying an existing event, the user should assign new values.<br />
*/<br />
$show_id=mysql_result($result,$i,&quot;show_id&quot;);<br />
$show_name=mysql_result($result,$i,&quot;show_name&quot;);<br />
<br />
$hour='';<br />
$minute='';<br />
$ampm='';<br />
$month='';<br />
$day='';<br />
$year='';<br />
$hour_end='';<br />
$minute_end='';<br />
$ampm_end='';<br />
$month_end='';<br />
$day_end='';<br />
$year_end='';<br />
$month_show='';<br />
$day_show='';<br />
$year_show='';<br />
<br />
$venue_name=mysql_result($result,$i,&quot;venue_name&quot;);<br />
$venue_address=mysql_result($result,$i,&quot;venue_address&quot;);<br />
$venue_city=mysql_result($result,$i,&quot;venue_city&quot;);<br />
$venue_state=mysql_result($result,$i,&quot;venue_state&quot;);<br />
$venue_postal_code=mysql_result($result,$i,&quot;venue_postal_code&quot;);<br />
$venue_country=mysql_result($result,$i,&quot;venue_country&quot;);<br />
$email=mysql_result($result,$i,&quot;email&quot;);<br />
$phone=mysql_result($result,$i,&quot;phone&quot;);<br />
$link=mysql_result($result,$i,&quot;link&quot;);<br />
$link_name=mysql_result($result,$i,&quot;link_name&quot;);<br />
$admission=mysql_result($result,$i,&quot;admission&quot;);<br />
$tix_info=mysql_result($result,$i,&quot;tix_info&quot;);<br />
$tix_link=mysql_result($result,$i,&quot;tix_link&quot;);<br />
$tix_link_name=mysql_result($result,$i,&quot;tix_link_name&quot;);<br />
$show_button=mysql_result($result,$i,&quot;show_button&quot;);<br />
$description=mysql_result($result,$i,&quot;description&quot;);<br />
$html=mysql_result($result,$i,&quot;html&quot;);<br />
<br />
$i++;<br />
}<br />
<br />
if (!isset($_POST['submit'])) {<br />
<br />
?&gt;<br />
<br />
<br />
&lt;h1&gt;Copy Show: &lt;?php echo $show_name; ?&gt;  &lt;/h1&gt;<br />
<br />
&lt;?php include('form.php'); ?&gt;<br />
<br />
&lt;/table&gt;<br />
&lt;/center&gt;<br />
<br />
&lt;?php <br />
}<br />
 else {<br />
 <br />
//Get form values<br />
$ud_show_name=$_POST['ud_show_name'];<br />
$ud_hour=$_POST['ud_hour'];<br />
$ud_minute=$_POST['ud_minute'];<br />
$ud_ampm=$_POST['ud_ampm'];<br />
$ud_month=$_POST['ud_month'];<br />
$ud_day=$_POST['ud_day'];<br />
$ud_year=$_POST['ud_year'];<br />
$ud_hour_end=$_POST['ud_hour_end'];<br />
$ud_minute_end=$_POST['ud_minute_end'];<br />
$ud_ampm_end=$_POST['ud_ampm_end'];<br />
$ud_month_end=$_POST['ud_month_end'];<br />
$ud_day_end=$_POST['ud_day_end'];<br />
$ud_year_end=$_POST['ud_year_end'];<br />
$ud_month_show=$_POST['ud_month_show'];<br />
$ud_day_show=$_POST['ud_day_show'];<br />
$ud_year_show=$_POST['ud_year_show'];<br />
$ud_venue_name=$_POST['ud_venue_name'];<br />
$ud_venue_address=$_POST['ud_venue_address'];<br />
$ud_venue_city=$_POST['ud_venue_city'];<br />
$ud_venue_state=$_POST['ud_venue_state'];<br />
$ud_venue_postal_code=$_POST['ud_venue_postal_code'];<br />
$ud_venue_country=$_POST['ud_venue_country'];<br />
$ud_email=$_POST['ud_email'];<br />
$ud_phone=$_POST['ud_phone'];<br />
$ud_link=$_POST['ud_link'];<br />
$ud_link_name=$_POST['ud_link_name'];<br />
$ud_admission=$_POST['ud_admission'];<br />
$ud_tix_info=$_POST['ud_tix_info'];<br />
$ud_tix_link=$_POST['ud_tix_link'];<br />
$ud_tix_link_name=$_POST['ud_tix_link_name'];<br />
$ud_show_button=$_POST['ud_show_button'];<br />
$ud_description=$_POST['ud_description'];<br />
$ud_html=$_POST['ud_html'];<br />
<br />
//escape single quotes and replace them with html equivalent<br />
$ud_show_name=preg_replace(&quot;/\'/&quot;,&quot;&amp;#039;&quot;, ($ud_show_name));<br />
$ud_description=preg_replace(&quot;/\'/&quot;,&quot;&amp;#039;&quot;, ($ud_description));<br />
<br />
include(&quot;config.php&quot;);<br />
mysql_connect($dbhost,$dbuser,$dbpass);<br />
mysql_select_db($dbname) or die( &quot;Unable to select database&quot;);<br />
<br />
//insert values into db, under new show_id<br />
$query = &quot;INSERT INTO events VALUES (<br />
'',<br />
'$ud_show_name',<br />
'$ud_hour',<br />
'$ud_minute',<br />
'$ud_ampm',<br />
'$ud_hour_end',<br />
'$ud_minute_end',<br />
'$ud_ampm_end',<br />
'$ud_month',<br />
'$ud_day',<br />
'$ud_year',<br />
'$ud_month_end',<br />
'$ud_day_end',<br />
'$ud_year_end',<br />
'$ud_month_show',<br />
'$ud_day_show',<br />
'$ud_year_show',<br />
'$ud_venue_name',<br />
'$ud_venue_address',<br />
'$ud_venue_city',<br />
'$ud_venue_state',<br />
'$ud_venue_postal_code',<br />
'$ud_venue_country',<br />
'$ud_email',<br />
'$ud_phone',<br />
'$ud_link',<br />
'$ud_link_name',<br />
'$ud_admission',<br />
'$ud_tix_info',<br />
'$ud_tix_link',<br />
'$ud_tix_link_name',<br />
'$ud_show_button',<br />
'$ud_description',<br />
'$ud_html')&quot;;<br />
<br />
//success!... hopefully :)<br />
$rt=mysql_query($query);<br />
if ($rt) {echo &quot;&lt;center&gt;&lt;h1&gt;Show Copied!&lt;/h1&gt; &lt;/center&gt;&quot;; }<br />
else { mysql_error(); } <br />
mysql_close();<br />
<br />
}<br />
<br />
include(&quot;nav.php&quot;); ?&gt;<br />
<br />
&lt;/body&gt;<br />
&lt;/html&gt;]]></description>
            <dc:creator>caclarkfrieson</dc:creator>
            <category>PHP Events Lister</category>
            <pubDate>Fri, 18 Mar 2011 12:38:56 -0700</pubDate>
        </item>
        <item>
            <guid>http://www.mevin.com/forum/read.php?2,151,151#msg-151</guid>
            <title>Embed using PHP Include (1 reply)</title>
            <link>http://www.mevin.com/forum/read.php?2,151,151#msg-151</link>
            <description><![CDATA[ Hi,<br />
<br />
Just checking out the script, and it appears to be very nicely done.<br />
<br />
I'm trying to embed the script on a page using PHP include, but I'm having a problem.<br />
<br />
I can &quot;include&quot; index.php or index1.php, no problem. But if I use index1.php to display the simplified listing, the link that goes to &quot;event.php&quot; opens up in a new page. I'd like the detailed event to display in the same  area on the page where I've got index1.php.<br />
<br />
Is the only way to do this to use an I-Frame? I generally prefer PHP Include, as this integrates better with the page.<br />
<br />
Thanks.]]></description>
            <dc:creator>RayC</dc:creator>
            <category>PHP Events Lister</category>
            <pubDate>Wed, 23 Mar 2011 13:21:24 -0700</pubDate>
        </item>
        <item>
            <guid>http://www.mevin.com/forum/read.php?2,144,144#msg-144</guid>
            <title>PHPBB3 Integration (2 replies)</title>
            <link>http://www.mevin.com/forum/read.php?2,144,144#msg-144</link>
            <description><![CDATA[ I was wondering if there is a way to get instructions on how to integrate this event lister in a PHPBB3 based website (i.e. session control, styles, headers, footers, etc.) Thank you]]></description>
            <dc:creator>makkie_65</dc:creator>
            <category>PHP Events Lister</category>
            <pubDate>Mon, 24 Jan 2011 11:02:22 -0700</pubDate>
        </item>
        <item>
            <guid>http://www.mevin.com/forum/read.php?2,139,139#msg-139</guid>
            <title>Preceding giglist empty (4 replies)</title>
            <link>http://www.mevin.com/forum/read.php?2,139,139#msg-139</link>
            <description><![CDATA[ Hi,<br />
<br />
Mid 2010 I started to use this eventlist-app. Very useful for our needs. I made 2 pages: forthcomomig gigs and preceding gigs. Yesterday I checked a date of a gig in 2010 and noticed that the complete list of prededing gigs was empty. However, the gigs are still in the database, but they are not displayed. The list of forthcoming gigs is still displayed. Anything to do with the change of year ? By the way, I added a dummy-gig with date 2nd January 2011, and it is, as the only one, displayed in the preceding giglist. Wat is the solution ?<br />
Jan]]></description>
            <dc:creator>JantjeBas</dc:creator>
            <category>PHP Events Lister</category>
            <pubDate>Wed, 05 Jan 2011 15:00:35 -0700</pubDate>
        </item>
        <item>
            <guid>http://www.mevin.com/forum/read.php?2,134,134#msg-134</guid>
            <title>Trouble with font formatting and divider (2 replies)</title>
            <link>http://www.mevin.com/forum/read.php?2,134,134#msg-134</link>
            <description><![CDATA[ Hello,<br />
<br />
New here - and new to php for the most part. First off, thanks for offering and supporting this product!<br />
<br />
When I'm on the admin page and select 'events page', my events show up just fine, with text formatting and divider between events. However, when I put the script into my website (&lt;?php include ('events/index.php'); ?&gt;) and browse to that page, the text formatting and divider are gone. All of the events and details show up, but there is no formatting...<br />
<br />
I have looked through the forum and FAQ, but don't see others with this issue. I must be doing something very simple very wrong!<br />
<br />
Thanks in advance.<br />
<br />
Dave]]></description>
            <dc:creator>fyziqs</dc:creator>
            <category>PHP Events Lister</category>
            <pubDate>Sun, 28 Nov 2010 13:59:58 -0700</pubDate>
        </item>
        <item>
            <guid>http://www.mevin.com/forum/read.php?2,133,133#msg-133</guid>
            <title>How to export events data to a csv file (2 replies)</title>
            <link>http://www.mevin.com/forum/read.php?2,133,133#msg-133</link>
            <description><![CDATA[ I recently got a request for a way to export the events data to an excel  file.   Here's some code to export in csv format, which you can easily import into Excel:<br />
<br />
<pre class="bbcode">
&lt;?php
require_once('common.php');
checkUser();

// Your MySQL host
$dbhost='localhost';

//Your MySQL username
$dbuser='your_user_name';

//Your MySQL password
$dbpass='your_password';

//Your MySQL database name
$dbname='Your_database_name';

$todays_date=date('mdY');

$filename = &quot;events$todays_date.csv&quot;;

$file = 'events';

$link = mysql_connect($dbhost,$dbuser,$dbpass) OR DIE ('Unable to connect to database! Please try again later.');
mysql_select_db($dbname) or die( &quot;Unable to select database&quot;);

$result = mysql_query(&quot;SHOW COLUMNS FROM events&quot;);
$i = 0;
if (mysql_num_rows($result) &gt; 0) {
while ($row = mysql_fetch_assoc($result)) {
$csv_output .= $row['Field'].&quot;; &quot;;
$i++;
}
}
$csv_output .= &quot;\n&quot;;

$values = mysql_query(&quot;SELECT * FROM events&quot;);
while ($rowr = mysql_fetch_row($values)) {
for ($j=0;$j&lt;$i;$j++) {
$csv_output .= $rowr[$j].&quot;; &quot;;
}
$csv_output .= &quot;\n&quot;;
}

header(&quot;Content-type: application/vnd.ms-excel&quot;);
header(&quot;Content-disposition: csv&quot; . date(&quot;Y-m-d&quot;) . &quot;.csv&quot;);
header( &quot;Content-disposition: filename=&quot;.$filename.&quot;.csv&quot;);
print $csv_output;
exit;
?&gt;
</pre>]]></description>
            <dc:creator>mevin</dc:creator>
            <category>PHP Events Lister</category>
            <pubDate>Mon, 29 Nov 2010 10:06:01 -0700</pubDate>
        </item>
        <item>
            <guid>http://www.mevin.com/forum/read.php?2,130,130#msg-130</guid>
            <title>fourt 5 headlines showing (3 replies)</title>
            <link>http://www.mevin.com/forum/read.php?2,130,130#msg-130</link>
            <description><![CDATA[ Best<br />
<br />
First sorry for my bad english.<br />
I got the script event added to my website.<br />
<br />
But now I want on may main page te fourt 5 upcoming events showing . This should link to the original events page.<br />
<br />
The same I use for my News page.<br />
And that piece of script looks like this:<br />
&lt;? PHP<br />
$ Static = TRUE;<br />
$ Number = &quot;5&quot;;<br />
$ Template = &quot;Headlines&quot;;<br />
include (&quot;news / show_news.php&quot;);<br />
?&gt;<br />
<br />
This can give the show five headlines of the news.<br />
But now I want the same for the events.<br />
<br />
Who can help me.<br />
<br />
MvG Frank]]></description>
            <dc:creator>Frank</dc:creator>
            <category>PHP Events Lister</category>
            <pubDate>Mon, 24 Jan 2011 11:21:47 -0700</pubDate>
        </item>
        <item>
            <guid>http://www.mevin.com/forum/read.php?2,125,125#msg-125</guid>
            <title>New Events Not Getting Added (3 replies)</title>
            <link>http://www.mevin.com/forum/read.php?2,125,125#msg-125</link>
            <description><![CDATA[ Hello,<br />
<br />
   I'm a newbie here but I'm wondering if anyone could help on this one.  I've setup the event list on my Windows 2003 server and I'm able to look at the webpage with no problem, and able to login to the system with no problems.    However, when I add events they do not show up so I'm guessing they're not getting inserted into the database correctly.    <br />
<br />
Therefore, here's what I've done so far.    <br />
1.) I made a simple PHP file to list those tables in the MySQL database and do see &quot;admin, events and no_events&quot; in there.<br />
<br />
2.) I then tried to wipe out the site and re-download it and started from scratch which didn't get me anything further &quot;just a test&quot;<br />
<br />
3.) I tried to setup the database again, but get the following error which I did find on the forum which was how I found the table names I was looking for.   &quot;username and password inserted successfuly!,  Error &quot;<br />
<br />
4.) I tried to create a new user after logging in, however that user does not get added for some reason but get no error accordingly.<br />
<br />
Thank you in advance<br />
<br />
<b><u>Server Info</u></b><br />
Windows 2003 Standard 32 bit<br />
MySQL v5.1.51<br />
PHP v5.3.3<br />
There are other MySQL databases running on this site as well perfectly phone<br />
All my other PHP scripts and pages are working perfect with database hooks in them pointing at the same databases for other application sets.]]></description>
            <dc:creator>mtcronin</dc:creator>
            <category>PHP Events Lister</category>
            <pubDate>Sat, 30 Oct 2010 22:13:33 -0700</pubDate>
        </item>
        <item>
            <guid>http://www.mevin.com/forum/read.php?2,122,122#msg-122</guid>
            <title>number of events showing (2 replies)</title>
            <link>http://www.mevin.com/forum/read.php?2,122,122#msg-122</link>
            <description><![CDATA[ I posted something similar to this in the request for features, but I guess I should ask if this is possible now.<br />
<br />
I just found your program and do have it up, and running.  My question is, right now I have it set to show the default 10 events.  However I took the index1.php page and modified the content to show it on the main page of my site. On the main page I don't want the 10 to show.  Is it possible to change the settings so say only the next 2 events will show on the main page and maintain the 10 on the actual events page?<br />
<br />
If you are not sure what I need, I don't want to put a link to it, as this is for a redo of my site so it is not for the public yet.  However if you need a link to see what I am trying to do, let me know and I will gladly send you the link. Once this version of our site is online, I will gladly post the link]]></description>
            <dc:creator>beegee</dc:creator>
            <category>PHP Events Lister</category>
            <pubDate>Fri, 22 Oct 2010 17:07:39 -0700</pubDate>
        </item>
        <item>
            <guid>http://www.mevin.com/forum/read.php?2,90,90#msg-90</guid>
            <title>undefined id (9 replies)</title>
            <link>http://www.mevin.com/forum/read.php?2,90,90#msg-90</link>
            <description><![CDATA[ PHP Notice:  Undefined variable: id in C:\inetpub\wwwroot\events2\admin\setup.php on line 204<br />
<br />
i'm getting this error while setup the databases, can someone help me out?<br />
<br />
i'm a php newbie &gt;&lt;<br />
<br />
appreciate yr kindess]]></description>
            <dc:creator>sherry526</dc:creator>
            <category>PHP Events Lister</category>
            <pubDate>Wed, 14 Jul 2010 23:12:32 -0700</pubDate>
        </item>
        <item>
            <guid>http://www.mevin.com/forum/read.php?2,86,86#msg-86</guid>
            <title>Alternating entry background colors (11 replies)</title>
            <link>http://www.mevin.com/forum/read.php?2,86,86#msg-86</link>
            <description><![CDATA[ Hi there- I was wondering if there was a way to alternate the background colors of every other entry? I am having a blast playing around with the script- everything is working like a charm! <br />
<br />
Thanks-<br />
Andrea]]></description>
            <dc:creator>Commandrea</dc:creator>
            <category>PHP Events Lister</category>
            <pubDate>Wed, 28 Jul 2010 20:11:14 -0700</pubDate>
        </item>
        <item>
            <guid>http://www.mevin.com/forum/read.php?2,76,76#msg-76</guid>
            <title>Unable to select database (9 replies)</title>
            <link>http://www.mevin.com/forum/read.php?2,76,76#msg-76</link>
            <description><![CDATA[ I am trying to set up the Events Lister script and keep running into the same problem... I get the error &quot;Unable to select database&quot; after filling out the setup.php form.  I have double checked all of my info in my config.php file and checked the permissions on the files after they are uploaded and everything appears correct.<br />
<br />
The one thing that I think might be in question in the config.php script is my DB host.  I have tried using &quot;localhost&quot; or the IP address of the host, like I have in other db connections (which work), but I still get the above error.<br />
<br />
Before installing the script I created a new blank db called &quot;eventlister&quot; and used that in the config file.  <br />
<br />
Is there anything that you can think of that I could try?]]></description>
            <dc:creator>mwalliser</dc:creator>
            <category>PHP Events Lister</category>
            <pubDate>Tue, 29 Jun 2010 13:04:32 -0700</pubDate>
        </item>
        <item>
            <guid>http://www.mevin.com/forum/read.php?2,70,70#msg-70</guid>
            <title>Embed calendar in sidebar div (2 replies)</title>
            <link>http://www.mevin.com/forum/read.php?2,70,70#msg-70</link>
            <description><![CDATA[ What is the best way to embed the calendar listing into the sidebar of a standard xhtml page? <br />
<br />
Thanks!]]></description>
            <dc:creator>blackdesk</dc:creator>
            <category>PHP Events Lister</category>
            <pubDate>Sat, 09 Oct 2010 04:21:18 -0700</pubDate>
        </item>
        <item>
            <guid>http://www.mevin.com/forum/read.php?2,66,66#msg-66</guid>
            <title>Including /events/index.php (5 replies)</title>
            <link>http://www.mevin.com/forum/read.php?2,66,66#msg-66</link>
            <description><![CDATA[ I have downloaded you event script from your website and have enjoyed it's many features. However every time I have tried to include the file on my website I have been unsuccessful.<br />
<br />
[<a href="http://nbl4life.com.au/events/" rel="nofollow" >nbl4life.com.au</a>]<br />
<br />
[<a href="http://nbl4life.com.au/index.php" rel="nofollow" >nbl4life.com.au</a>] - Here I have tried both...<br />
<br />
&lt;?php include ('events/index.php'); ?&gt;<br />
<br />
{include file=footer.tpl.php}<br />
<br />
I get the following error message.<br />
Warning: Smarty error: unable to read resource: &quot;events/index.php&quot; in /mounted-storage/home66a/sub003/sc39811-EYVA/nbl4life.com.au/inc/smarty/Smarty.class.php  on line 1092<br />
<br />
[<a href="http://nbl4life.com.au/residential.php" rel="nofollow" >nbl4life.com.au</a>] - Here I've also tried. (This page doen't even show an error message.<br />
    <br />
&lt;?php include ('events/index.php'); ?&gt; <br />
<br />
Please help me if you can.]]></description>
            <dc:creator>ryanvanderr</dc:creator>
            <category>PHP Events Lister</category>
            <pubDate>Sat, 09 Oct 2010 13:45:20 -0700</pubDate>
        </item>
        <item>
            <guid>http://www.mevin.com/forum/read.php?2,63,63#msg-63</guid>
            <title>PHP Error in Apache error logs (2 replies)</title>
            <link>http://www.mevin.com/forum/read.php?2,63,63#msg-63</link>
            <description><![CDATA[ Don't know if this is important or not, but I see the following in my Apache error logs:<br />
<br />
<pre class="bbcode">
[Sun May 09 00:31:25 2010] [error] [client 192.168.0.20] PHP Warning:  strtotime() [&lt;a href='function.strtotime'&gt;function.strtotime&lt;/a&gt;]: It is not safe to rely on the system's timezone settings. You are *re
quired* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone ide
ntifier. We selected 'America/New_York' for 'EDT/-4.0/DST' instead in /archive2/www/events2/index.php on line 127</pre>
<br />
<br />
Line 127 is below, adding the weekday function that you gave in this thread:   <a href="http://www.mevin.com/forum/read.php?2,26" rel="nofollow" >Here</a><br />
<br />
$date_string = &quot;$month/$day/$year&quot;;<br />
$weekday = date('l', strtotime($date_string));<br />
<br />
I see that it was just a warning, but just making sure that it's nothing to be worried about.  Just happened to notice it tonight.<br />
I've heavily modified the index.php to do the layout the way I wanted it.  If you need to see the whole thing, let me know.<br />
<br />
Thanks for this script.. It works great!]]></description>
            <dc:creator>derwood</dc:creator>
            <category>PHP Events Lister</category>
            <pubDate>Sun, 09 May 2010 01:25:55 -0700</pubDate>
        </item>
        <item>
            <guid>http://www.mevin.com/forum/read.php?2,57,57#msg-57</guid>
            <title>Apache http crashes after setting up the database (3 replies)</title>
            <link>http://www.mevin.com/forum/read.php?2,57,57#msg-57</link>
            <description><![CDATA[ Hi.<br />
I have a problem regarding the script. After i fill out all the necessary info regarding server and database and i run the setup.php file and click the setup the database button i get the windows errors saying &quot;Apache HTTP Server has stopped working”. According to the pop-up message, Windows is trying to check for solutions as expected by Microsoft nothing was found. But then i go into the database via the phpMyAdmin and i see all the 3 tables the script created and all the data that is stored in it. I also tried going directly to index.php but I get the same error.<br />
I would be very grateful for a quick resolve as i just can't figure out whats wrong and this looks like and amazing script just what i need.<br />
<br />
Best regards.<br />
<br />
Edit: forgot to say im using WAMP  as a server.]]></description>
            <dc:creator>shadez</dc:creator>
            <category>PHP Events Lister</category>
            <pubDate>Sun, 22 Aug 2010 12:13:03 -0700</pubDate>
        </item>
        <item>
            <guid>http://www.mevin.com/forum/read.php?2,51,51#msg-51</guid>
            <title>Event count (4 replies)</title>
            <link>http://www.mevin.com/forum/read.php?2,51,51#msg-51</link>
            <description><![CDATA[ Hi,<br />
<br />
I have re-installed the event lister after a server crash and all is well.  I had the number of events set to 5 and, on re-installation, changed it 100, hoping for what would be in reality, an unlimited number of events, however, I am finding that only 7 events are being reported out... examination of the underlying mysql file shows that the 8th event is in there, but it is not popping out..<br />
<br />
Do I need to reset something else?<br />
<br />
thank you]]></description>
            <dc:creator>hammy</dc:creator>
            <category>PHP Events Lister</category>
            <pubDate>Sat, 17 Apr 2010 00:53:12 -0700</pubDate>
        </item>
        <item>
            <guid>http://www.mevin.com/forum/read.php?2,46,46#msg-46</guid>
            <title>Does date need to show in order for events to list in order (5 replies)</title>
            <link>http://www.mevin.com/forum/read.php?2,46,46#msg-46</link>
            <description><![CDATA[ Does the date need to be displayed in the list in order for the events to show chronologically? Basically i will be adding the date when creating the event but not displaying it on the site.<br />
<br />
 I ask because the time format does not work for me. I need to show Day of week, Month, date, year. i.e. Monday, April, 30, 2010. I was hoping on just creating these new fields to manually add the dates when creating the event.]]></description>
            <dc:creator>totalgraphicsmiami</dc:creator>
            <category>PHP Events Lister</category>
            <pubDate>Tue, 31 Aug 2010 12:52:14 -0700</pubDate>
        </item>
        <item>
            <guid>http://www.mevin.com/forum/read.php?2,43,43#msg-43</guid>
            <title>HELP å ä ö (1 reply)</title>
            <link>http://www.mevin.com/forum/read.php?2,43,43#msg-43</link>
            <description><![CDATA[ How can i use swedish language?<br />
<br />
å ä ö dont work<br />
<br />
Thanks]]></description>
            <dc:creator>kuben</dc:creator>
            <category>PHP Events Lister</category>
            <pubDate>Tue, 09 Mar 2010 22:48:10 -0700</pubDate>
        </item>
    </channel>
</rss>

