<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>SitePoint Forums</title>
		<link>http://www.sitepoint.com/forums</link>
		<description>Webmaster Forums for Design, CSS, XHTML, PHP, Ruby, JavaScript, Affiliate Marketing, ASP.NET, Promotion</description>
		<language>en</language>
		<lastBuildDate>Sun, 22 Nov 2009 21:02:21 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://sitepointstatic.com/forums/images/misc/rss.jpg</url>
			<title>SitePoint Forums</title>
			<link>http://www.sitepoint.com/forums</link>
		</image>
		<item>
			<title>An interesting MVC routing issue</title>
			<link>http://www.sitepoint.com/forums/showthread.php?t=648403&amp;goto=newpost</link>
			<pubDate>Sun, 22 Nov 2009 20:48:08 GMT</pubDate>
			<description><![CDATA[I've used System.Web.Routing in my WebForms apps but instead of being tied to a controller and action it was tied to a physical .aspx page with a parameter like this:
	RouteTable.Routes.Add(
		new Route("{Parameter}/{pageID}", new RouteHandler()));
	RouteTable.Routes.Add(
		new Route("{Parameter}",...]]></description>
			<content:encoded><![CDATA[<div>I've used System.Web.Routing in my WebForms apps but instead of being tied to a controller and action it was tied to a physical .aspx page with a parameter like this:<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Csharp Code:</div>
	<pre class="alt2" style="margin:0px; padding:6px; border:1px inset; width:480px;max-width:480px;height:100px; overflow:auto"><div dir="ltr" style="text-align:left;"><div style="background:#f0f0f0;">RouteTable.<span style="color: #0000FF;">Routes</span>.<span style="color: #0000FF;">Add</span><span style="color: #000000;">&#40;</span></div><div style="">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">new</span> Route<span style="color: #000000;">&#40;</span><span style="color: #808080;">&quot;{Parameter}/{pageID}&quot;</span>, <span style="color: #008000;">new</span> RouteHandler<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span>;</div><div style="background:#f0f0f0;">&nbsp; &nbsp; RouteTable.<span style="color: #0000FF;">Routes</span>.<span style="color: #0000FF;">Add</span><span style="color: #000000;">&#40;</span></div><div style="">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">new</span> Route<span style="color: #000000;">&#40;</span><span style="color: #808080;">&quot;{Parameter}&quot;</span>, <span style="color: #008000;">new</span> RouteHandler<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span>;</div></div></pre>
</div>The first Route is for a page that uses a varialble pageID and the second route is just for running the other pages without the .aspx extension.<br />
<br />
To learn MVC I'm converting one of my sites from WebForms piece by piece.<br />
<br />
My concern with the routing scheme is that my current page gets decent search engine ranking so I don't want to change from the current URLs if possible.  <br />
<br />
Currently I have <a href="http://example.com/page/page-title" target="_blank">http://example.com/page/page-title</a> but with MVC it seems that I have to name the controller and the action for it to route properly so I have <a href="http://example.com/page/index/page-title" target="_blank">http://example.com/page/index/page-title</a> and I'd like to keep if from changing both for google and for those that may have bookmarked pages.<br />
<br />
I could change the order of the routing for Page to something like this:<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Csharp Code:</div>
	<pre class="alt2" style="margin:0px; padding:6px; border:1px inset; width:480px;max-width:480px;height:100px; overflow:auto"><div dir="ltr" style="text-align:left;"><div style="background:#f0f0f0;">routes.<span style="color: #0000FF;">MapRoute</span><span style="color: #000000;">&#40;</span></div><div style="">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #808080;">&quot;&quot;</span>,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008080; font-style: italic;">// Route name</span></div><div style="background:#f0f0f0;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #808080;">&quot;{controller}/{pageID}/{action}&quot;</span>,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #008080; font-style: italic;">// URL with parameters</span></div><div style="">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">new</span> <span style="color: #000000;">&#123;</span> controller = <span style="color: #808080;">&quot;Page&quot;</span>, action = <span style="color: #808080;">&quot;Index&quot;</span>, pageID = <span style="color: #808080;">&quot;&quot;</span> <span style="color: #000000;">&#125;</span></div></div></pre>
</div> That way action is always Index unless otherwise specified.<br />
<br />
Is that a good plan or is there a better idea?</div>

]]></content:encoded>
			<category domain="http://www.sitepoint.com/forums/forumdisplay.php?f=141">.NET</category>
			<dc:creator>NAWA-mark</dc:creator>
			<guid isPermaLink="true">http://www.sitepoint.com/forums/showthread.php?t=648403</guid>
		</item>
		<item>
			<title>Designing</title>
			<link>http://www.sitepoint.com/forums/showthread.php?t=648402&amp;goto=newpost</link>
			<pubDate>Sun, 22 Nov 2009 20:40:41 GMT</pubDate>
			<description>I am developer of websites i am working on PHP and designing part complete my friend i want to know what is difference between CSS and Photoshop,</description>
			<content:encoded><![CDATA[<div>I am developer of websites i am working on PHP and designing part complete my friend i want to know what is difference between CSS and Photoshop,</div>

]]></content:encoded>
			<category domain="http://www.sitepoint.com/forums/forumdisplay.php?f=1">Web Page Design</category>
			<dc:creator>elizabethjohne</dc:creator>
			<guid isPermaLink="true">http://www.sitepoint.com/forums/showthread.php?t=648402</guid>
		</item>
		<item>
			<title>Errors after changing to mysql_pconnect</title>
			<link>http://www.sitepoint.com/forums/showthread.php?t=648401&amp;goto=newpost</link>
			<pubDate>Sun, 22 Nov 2009 20:30:45 GMT</pubDate>
			<description>After changing the way my database connects, I get errors on some pages of my site.

Errors such as: 
PHP:
---------
Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /home/gameany/public_html/includes/functions.php on line 212
---------
and

PHP:</description>
			<content:encoded><![CDATA[<div>After changing the way my database connects, I get errors on some pages of my site.<br />
<br />
Errors such as: <div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">PHP Code:</div>
	<div class="alt2">
		<hr />
		<code style="white-space:nowrap">
		<div dir="ltr" style="text-align:left;">
			<!-- php buffer start --><code><font color="#000000">
<font color="#0000BB">Warning</font><font color="#007700">: </font><font color="#0000BB">mysql_num_rows</font><font color="#007700">(): </font><font color="#0000BB">supplied argument is not a valid MySQL result resource in </font><font color="#007700">/</font><font color="#0000BB">home</font><font color="#007700">/</font><font color="#0000BB">gameany</font><font color="#007700">/</font><font color="#0000BB">public_html</font><font color="#007700">/</font><font color="#0000BB">includes</font><font color="#007700">/</font><font color="#0000BB">functions</font><font color="#007700">.</font><font color="#0000BB">php on line 212 <br /></font>
</font>
</code><!-- php buffer end -->
		</div>
		</code>
		<hr />
	</div>
</div>and<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">PHP Code:</div>
	<div class="alt2">
		<hr />
		<code style="white-space:nowrap">
		<div dir="ltr" style="text-align:left;">
			<!-- php buffer start --><code><font color="#000000">
<font color="#0000BB">Parse error</font><font color="#007700">: </font><font color="#0000BB">syntax error</font><font color="#007700">, </font><font color="#0000BB">unexpected T_STRING in </font><font color="#007700">/</font><font color="#0000BB">home</font><font color="#007700">/</font><font color="#0000BB">gameany</font><font color="#007700">/</font><font color="#0000BB">public_html</font><font color="#007700">/</font><font color="#0000BB">includes</font><font color="#007700">/</font><font color="#0000BB">more</font><font color="#007700">.</font><font color="#0000BB">php on line 11 <br /></font>
</font>
</code><!-- php buffer end -->
		</div>
		</code>
		<hr />
	</div>
</div>These are basic queries which worked previously. Any ideas?</div>

]]></content:encoded>
			<category domain="http://www.sitepoint.com/forums/forumdisplay.php?f=182">MySQL</category>
			<dc:creator>jetnine</dc:creator>
			<guid isPermaLink="true">http://www.sitepoint.com/forums/showthread.php?t=648401</guid>
		</item>
		<item>
			<title>When and why internet start</title>
			<link>http://www.sitepoint.com/forums/showthread.php?t=648400&amp;goto=newpost</link>
			<pubDate>Sun, 22 Nov 2009 20:17:39 GMT</pubDate>
			<description><![CDATA[In fact i am thinking since last some days that when internet start and who's creation and what difficulties was hire in the way and what was the basic purpose of the internet.]]></description>
			<content:encoded><![CDATA[<div>In fact i am thinking since last some days that when internet start and who's creation and what difficulties was hire in the way and what was the basic purpose of the internet.</div>

]]></content:encoded>
			<category domain="http://www.sitepoint.com/forums/forumdisplay.php?f=9">General Chat</category>
			<dc:creator>elizabethjohne</dc:creator>
			<guid isPermaLink="true">http://www.sitepoint.com/forums/showthread.php?t=648400</guid>
		</item>
		<item>
			<title>What is your favourite hollywood film</title>
			<link>http://www.sitepoint.com/forums/showthread.php?t=648399&amp;goto=newpost</link>
			<pubDate>Sun, 22 Nov 2009 20:12:06 GMT</pubDate>
			<description>Hello i have seen film cast away approximately 20 times this very good film what is your favorite film.</description>
			<content:encoded><![CDATA[<div>Hello i have seen film cast away approximately 20 times this very good film what is your favorite film.</div>

]]></content:encoded>
			<category domain="http://www.sitepoint.com/forums/forumdisplay.php?f=9">General Chat</category>
			<dc:creator>elizabethjohne</dc:creator>
			<guid isPermaLink="true">http://www.sitepoint.com/forums/showthread.php?t=648399</guid>
		</item>
		<item>
			<title>Anybody like riding</title>
			<link>http://www.sitepoint.com/forums/showthread.php?t=648398&amp;goto=newpost</link>
			<pubDate>Sun, 22 Nov 2009 20:09:57 GMT</pubDate>
			<description>I like riding very much is here any body who like riding like me.</description>
			<content:encoded><![CDATA[<div>I like riding very much is here any body who like riding like me.</div>

]]></content:encoded>
			<category domain="http://www.sitepoint.com/forums/forumdisplay.php?f=9">General Chat</category>
			<dc:creator>elizabethjohne</dc:creator>
			<guid isPermaLink="true">http://www.sitepoint.com/forums/showthread.php?t=648398</guid>
		</item>
		<item>
			<title>Newbies say welcome</title>
			<link>http://www.sitepoint.com/forums/showthread.php?t=648397&amp;goto=newpost</link>
			<pubDate>Sun, 22 Nov 2009 19:59:59 GMT</pubDate>
			<description>I am newbies in the forum i am really enjoying and surprised to meet this community.</description>
			<content:encoded><![CDATA[<div>I am newbies in the forum i am really enjoying and surprised to meet this community.</div>

]]></content:encoded>
			<category domain="http://www.sitepoint.com/forums/forumdisplay.php?f=51">Introductions</category>
			<dc:creator>elizabethjohne</dc:creator>
			<guid isPermaLink="true">http://www.sitepoint.com/forums/showthread.php?t=648397</guid>
		</item>
		<item>
			<title>Elizabeth john wants welcome to you</title>
			<link>http://www.sitepoint.com/forums/showthread.php?t=648396&amp;goto=newpost</link>
			<pubDate>Sun, 22 Nov 2009 19:58:09 GMT</pubDate>
			<description>I am very new the sitepoint and says welcome to all and want your attention.
i have no friends in this community i hope you will appreciate me.</description>
			<content:encoded><![CDATA[<div>I am very new the sitepoint and says welcome to all and want your attention.<br />
i have no friends in this community i hope you will appreciate me.</div>

]]></content:encoded>
			<category domain="http://www.sitepoint.com/forums/forumdisplay.php?f=51">Introductions</category>
			<dc:creator>elizabethjohne</dc:creator>
			<guid isPermaLink="true">http://www.sitepoint.com/forums/showthread.php?t=648396</guid>
		</item>
		<item>
			<title>Blog Commenting and social bookmarking</title>
			<link>http://www.sitepoint.com/forums/showthread.php?t=648395&amp;goto=newpost</link>
			<pubDate>Sun, 22 Nov 2009 19:55:21 GMT</pubDate>
			<description>i am doing work online since last two years but could not understand that what is the difference between blog commenting and social bookmarking can any body can help me out in this way.
Thanks,</description>
			<content:encoded><![CDATA[<div>i am doing work online since last two years but could not understand that what is the difference between blog commenting and social bookmarking can any body can help me out in this way.<br />
Thanks,</div>

]]></content:encoded>
			<category domain="http://www.sitepoint.com/forums/forumdisplay.php?f=242">Blogging</category>
			<dc:creator>elizabethjohne</dc:creator>
			<guid isPermaLink="true">http://www.sitepoint.com/forums/showthread.php?t=648395</guid>
		</item>
		<item>
			<title>Blog Commenting</title>
			<link>http://www.sitepoint.com/forums/showthread.php?t=648394&amp;goto=newpost</link>
			<pubDate>Sun, 22 Nov 2009 19:45:46 GMT</pubDate>
			<description>I am doing projects of forum posting can any body can tell me about blog commenting:)</description>
			<content:encoded><![CDATA[<div>I am doing projects of forum posting can any body can tell me about blog commenting:)</div>

]]></content:encoded>
			<category domain="http://www.sitepoint.com/forums/forumdisplay.php?f=242">Blogging</category>
			<dc:creator>elizabethjohne</dc:creator>
			<guid isPermaLink="true">http://www.sitepoint.com/forums/showthread.php?t=648394</guid>
		</item>
		<item>
			<title>Alloo My friend</title>
			<link>http://www.sitepoint.com/forums/showthread.php?t=648393&amp;goto=newpost</link>
			<pubDate>Sun, 22 Nov 2009 19:23:57 GMT</pubDate>
			<description>Hiii Site Point members... 

My Name is Redrigo 

I Want to learn all about internet marketing :) 

I hope, I can receive in this forum..</description>
			<content:encoded><![CDATA[<div>Hiii Site Point members... <br />
<br />
My Name is Redrigo <br />
<br />
I Want to learn all about internet marketing :) <br />
<br />
I hope, I can receive in this forum..</div>

]]></content:encoded>
			<category domain="http://www.sitepoint.com/forums/forumdisplay.php?f=51">Introductions</category>
			<dc:creator>redrigo</dc:creator>
			<guid isPermaLink="true">http://www.sitepoint.com/forums/showthread.php?t=648393</guid>
		</item>
		<item>
			<title>path_info</title>
			<link>http://www.sitepoint.com/forums/showthread.php?t=648392&amp;goto=newpost</link>
			<pubDate>Sun, 22 Nov 2009 19:23:53 GMT</pubDate>
			<description><![CDATA[Hello

I want to have a domain like this: domain/number.  The number will be used to query a database.  The server path_info works on my local host

eg localhost/file.php/1234

This would be /1234

The extension isn't a file name, just a value that is used to query a database.]]></description>
			<content:encoded><![CDATA[<div>Hello<br />
<br />
I want to have a domain like this: domain/number.  The number will be used to query a database.  The server path_info works on my local host<br />
<br />
eg localhost/file.php/1234<br />
<br />
This would be /1234<br />
<br />
The extension isn't a file name, just a value that is used to query a database.<br />
<br />
Is there an easy way to do this via php that works on a non local machine?<br />
<br />
Thanks<br />
Lewis</div>

]]></content:encoded>
			<category domain="http://www.sitepoint.com/forums/forumdisplay.php?f=34">PHP</category>
			<dc:creator>lewisb87</dc:creator>
			<guid isPermaLink="true">http://www.sitepoint.com/forums/showthread.php?t=648392</guid>
		</item>
		<item>
			<title>Great advise needed !!!</title>
			<link>http://www.sitepoint.com/forums/showthread.php?t=648391&amp;goto=newpost</link>
			<pubDate>Sun, 22 Nov 2009 18:53:46 GMT</pubDate>
			<description>folks,

my client want me to do a sign board that width is 3 feet x 1 feet.
so i want to make the title text in to that width.

now do i need to take a canvas of 3feet x 1 feet to design the logo?

i have no idea on illustrator. i only know photosop well.

pls advise</description>
			<content:encoded><![CDATA[<div>folks,<br />
<br />
my client want me to do a sign board that width is 3 feet x 1 feet.<br />
so i want to make the title text in to that width.<br />
<br />
now do i need to take a canvas of 3feet x 1 feet to design the logo?<br />
<br />
i have no idea on illustrator. i only know photosop well.<br />
<br />
pls advise<br />
<br />
* ill check your replies morning....<br />
<br />
:rolleyes:</div>

]]></content:encoded>
			<category domain="http://www.sitepoint.com/forums/forumdisplay.php?f=8">Graphics</category>
			<dc:creator>afridy</dc:creator>
			<guid isPermaLink="true">http://www.sitepoint.com/forums/showthread.php?t=648391</guid>
		</item>
		<item>
			<title>rookie needs general advice please</title>
			<link>http://www.sitepoint.com/forums/showthread.php?t=648390&amp;goto=newpost</link>
			<pubDate>Sun, 22 Nov 2009 18:45:35 GMT</pubDate>
			<description><![CDATA[just want check base with you guys before I head off in the wrong direction.

want to build a site that's all about a calendar. people will post their events to this calendar, and it will display (at least) the events title (and maybe time of day) in the appropriate day's box of the calendar - as...]]></description>
			<content:encoded><![CDATA[<div>just want check base with you guys before I head off in the wrong direction.<br />
<br />
want to build a site that's all about a calendar. people will post their events to this calendar, and it will display (at least) the events title (and maybe time of day) in the appropriate day's box of the calendar - as to be viewed at a glance. a click on that day's box will display the events in detail. a nice feature would be to have the event blink until two users agree to the meeting, or what have you, and once agreed to the event would be &quot;locked in&quot; - no longer blinking. sending an email notice of the proposed event to the second party would be nice too.<br />
<br />
so my question to you is this: in a general way, how would YOU go about this? right now I'm thinking a relational database SQL, one (parent) table for user info and another (child) table for the events. PHP to do the logic, get things to and from the DB, as well as build the calendar. then some HTML to write the calendar (as a table I guess). may need some Javascript to get the blinking action and mouseover effects and such.<br />
<br />
would really like to hear anyone's thoughts on this as I'm working alone. if you care to reply please keep in mind I'm a newbie. plus I'm lazy and stupid, so keep it simple :-).<br />
<br />
many thanks!<br />
<br />
-mike</div>

]]></content:encoded>
			<category domain="http://www.sitepoint.com/forums/forumdisplay.php?f=16">Just Starting Your Design</category>
			<dc:creator>m300zx</dc:creator>
			<guid isPermaLink="true">http://www.sitepoint.com/forums/showthread.php?t=648390</guid>
		</item>
		<item>
			<title>cfgrid with some features</title>
			<link>http://www.sitepoint.com/forums/showthread.php?t=648389&amp;goto=newpost</link>
			<pubDate>Sun, 22 Nov 2009 18:35:04 GMT</pubDate>
			<description>hi all, I have cfgrid which displays 9 coloumns... first column will have checkboxes if the record is not acknowledge..if acknowledge just the time stamp from db... if check box is clicked, it will call another page(the page is already there)

 
Other columns will have statndard data from...</description>
			<content:encoded><![CDATA[<div>hi all, I have cfgrid which displays 9 coloumns... first column will have checkboxes if the record is not acknowledge..if acknowledge just the time stamp from db... if check box is clicked, it will call another page(the page is already there)<br />
<br />
 <br />
Other columns will have statndard data from db...except one column will have four values of db on a new line...(video - 130 &lt;br&gt;digital -200&lt;br&gt;...) And lastly, the last column will have a tooltip which is a result of db column.<br />
<br />
The acknowledge column back color is green...the others will follow sequence of grey/white background...<br />
 <br />
Any example appreciated..</div>

]]></content:encoded>
			<category domain="http://www.sitepoint.com/forums/forumdisplay.php?f=214">ColdFusion</category>
			<dc:creator>emmim44</dc:creator>
			<guid isPermaLink="true">http://www.sitepoint.com/forums/showthread.php?t=648389</guid>
		</item>
	</channel>
</rss>
