<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[Developer Solution : - An IT And Web Development Discussion Forum - All Forums]]></title>
		<link>http://www.developersolution.com/</link>
		<description><![CDATA[Developer Solution : - An IT And Web Development Discussion Forum - http://www.developersolution.com]]></description>
		<pubDate>Fri, 12 Mar 2010 10:26:49 -0600</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Command line arguments to main]]></title>
			<link>http://www.developersolution.com/showthread.php?tid=72</link>
			<pubDate>Fri, 12 Mar 2010 03:46:06 -0600</pubDate>
			<dc:creator>programmer100</dc:creator>
			<guid isPermaLink="false">http://www.developersolution.com/showthread.php?tid=72</guid>
			<description><![CDATA[ok I have been trying to get this command line arguments thing going with somthing simple. So i decided to try a very simple calculator. However even though it compiles correctly, it seems to not read my arguments properly. Any help here?<br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>#include &lt;iostream&gt; <br />
#include &lt;cstdlib&gt; <br />
 <br />
 <br />
using namespace std; <br />
 <br />
int main(int argc, char *argv[&#93;) <br />
{ <br />
&nbsp;&nbsp;&nbsp;&nbsp;double a; <br />
&nbsp;&nbsp;&nbsp;&nbsp;double b; <br />
 <br />
 <br />
&nbsp;&nbsp;&nbsp;&nbsp;if(argc != 4) <br />
&nbsp;&nbsp;&nbsp;&nbsp;{ <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;cout&lt;&lt;"Invalid argument. Use calculate number operator number."; <br />
&nbsp;&nbsp;&nbsp;&nbsp;} <br />
&nbsp;&nbsp;&nbsp;&nbsp;else <br />
&nbsp;&nbsp;&nbsp;&nbsp;{ <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;a = atof(argv[1&#93;); <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;b = atof(argv[3&#93;); <br />
 <br />
 <br />
 <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (argv[2&#93; == "+") <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{ <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;cout&lt;&lt; a + b ; <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;} <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;else if (argv[2&#93; == "-") <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{ <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;cout&lt;&lt; a - b; <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;} <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;else if (argv[2&#93; == "*") <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{ <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;cout&lt;&lt; a * b; <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;} <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;else if (argv[2&#93; == "/") <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{ <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;cout&lt;&lt; a / b; <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;} <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;else <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{ <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;cout&lt;&lt; "invalid operator"; <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;} <br />
&nbsp;&nbsp;&nbsp;&nbsp;} <br />
 <br />
 <br />
 <br />
&nbsp;&nbsp;&nbsp;&nbsp;return 0; <br />
}</code></div></div>
<br />
This is really annoying me.]]></description>
			<content:encoded><![CDATA[ok I have been trying to get this command line arguments thing going with somthing simple. So i decided to try a very simple calculator. However even though it compiles correctly, it seems to not read my arguments properly. Any help here?<br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>#include &lt;iostream&gt; <br />
#include &lt;cstdlib&gt; <br />
 <br />
 <br />
using namespace std; <br />
 <br />
int main(int argc, char *argv[]) <br />
{ <br />
&nbsp;&nbsp;&nbsp;&nbsp;double a; <br />
&nbsp;&nbsp;&nbsp;&nbsp;double b; <br />
 <br />
 <br />
&nbsp;&nbsp;&nbsp;&nbsp;if(argc != 4) <br />
&nbsp;&nbsp;&nbsp;&nbsp;{ <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;cout&lt;&lt;"Invalid argument. Use calculate number operator number."; <br />
&nbsp;&nbsp;&nbsp;&nbsp;} <br />
&nbsp;&nbsp;&nbsp;&nbsp;else <br />
&nbsp;&nbsp;&nbsp;&nbsp;{ <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;a = atof(argv[1]); <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;b = atof(argv[3]); <br />
 <br />
 <br />
 <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (argv[2] == "+") <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{ <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;cout&lt;&lt; a + b ; <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;} <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;else if (argv[2] == "-") <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{ <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;cout&lt;&lt; a - b; <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;} <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;else if (argv[2] == "*") <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{ <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;cout&lt;&lt; a * b; <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;} <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;else if (argv[2] == "/") <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{ <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;cout&lt;&lt; a / b; <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;} <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;else <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{ <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;cout&lt;&lt; "invalid operator"; <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;} <br />
&nbsp;&nbsp;&nbsp;&nbsp;} <br />
 <br />
 <br />
 <br />
&nbsp;&nbsp;&nbsp;&nbsp;return 0; <br />
}</code></div></div>
<br />
This is really annoying me.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Real time scanner in vb]]></title>
			<link>http://www.developersolution.com/showthread.php?tid=71</link>
			<pubDate>Fri, 12 Mar 2010 03:33:15 -0600</pubDate>
			<dc:creator>daniel</dc:creator>
			<guid isPermaLink="false">http://www.developersolution.com/showthread.php?tid=71</guid>
			<description><![CDATA[Hello, I'm trying to develop some monitoring system for mp3 file in VB (watch which mp3 plays the most and send the data to database)<br />
<br />
And the problem is the system have to have realtime scanner feature because it have to monitors everything that happened to the mp3 file, start from playing, meta data modification, moving to other directory etc and send it to database. I'm getting trouble doing it in VB.<br />
<br />
I already tried filesystemwatcher but it does not report anything when an mp3 file is opened.<br />
<br />
Does anyone now how to make it possible in VB? Or is it impossible from the beginning?]]></description>
			<content:encoded><![CDATA[Hello, I'm trying to develop some monitoring system for mp3 file in VB (watch which mp3 plays the most and send the data to database)<br />
<br />
And the problem is the system have to have realtime scanner feature because it have to monitors everything that happened to the mp3 file, start from playing, meta data modification, moving to other directory etc and send it to database. I'm getting trouble doing it in VB.<br />
<br />
I already tried filesystemwatcher but it does not report anything when an mp3 file is opened.<br />
<br />
Does anyone now how to make it possible in VB? Or is it impossible from the beginning?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Code for image processing]]></title>
			<link>http://www.developersolution.com/showthread.php?tid=70</link>
			<pubDate>Fri, 12 Mar 2010 03:23:23 -0600</pubDate>
			<dc:creator>markses</dc:creator>
			<guid isPermaLink="false">http://www.developersolution.com/showthread.php?tid=70</guid>
			<description><![CDATA[Hi ,<br />
I want to detect multiple markers.so i need some help from the image processing part.<br />
1. how th detect multiple markers<br />
2. how to save the image<br />
3. how to retrieve the image<br />
<br />
please any one help me]]></description>
			<content:encoded><![CDATA[Hi ,<br />
I want to detect multiple markers.so i need some help from the image processing part.<br />
1. how th detect multiple markers<br />
2. how to save the image<br />
3. how to retrieve the image<br />
<br />
please any one help me]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Sudoku Solver]]></title>
			<link>http://www.developersolution.com/showthread.php?tid=69</link>
			<pubDate>Fri, 12 Mar 2010 03:20:43 -0600</pubDate>
			<dc:creator>markses</dc:creator>
			<guid isPermaLink="false">http://www.developersolution.com/showthread.php?tid=69</guid>
			<description><![CDATA[Hey all,<br />
I have recently been given the project of making a sudoku solver by my teacher.<br />
I have written a sudoku checker before that generally checks if the sudoku is correct it works fine. But now ive been asked to create a solver, so ive done some reasearch and it shows that a Brute force algorithm is quite succesful but i think that is:<br />
1) primitive<br />
2) not logical<br />
3) would not be efficent<br />
<br />
So ive been wondering if anyone know any methods to do this.<br />
<br />
I am just looking for ideas how to work it out. <br />
Thanks]]></description>
			<content:encoded><![CDATA[Hey all,<br />
I have recently been given the project of making a sudoku solver by my teacher.<br />
I have written a sudoku checker before that generally checks if the sudoku is correct it works fine. But now ive been asked to create a solver, so ive done some reasearch and it shows that a Brute force algorithm is quite succesful but i think that is:<br />
1) primitive<br />
2) not logical<br />
3) would not be efficent<br />
<br />
So ive been wondering if anyone know any methods to do this.<br />
<br />
I am just looking for ideas how to work it out. <br />
Thanks]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Error in reverse (string**,int)]]></title>
			<link>http://www.developersolution.com/showthread.php?tid=68</link>
			<pubDate>Fri, 12 Mar 2010 03:14:26 -0600</pubDate>
			<dc:creator>andrewdis</dc:creator>
			<guid isPermaLink="false">http://www.developersolution.com/showthread.php?tid=68</guid>
			<description><![CDATA[Hi guys, reverse engineering a data structures piece of code.<br />
The is a function that reverses pointers in an array.<br />
The definitio <br />
void reverse(string**,int);<br />
<br />
why does string pointer have 2*?<br />
<br />
If I remove one, i get the error <br />
:cannot convert `std::string**' to `std::string*' for argument `1' to `void print(std::string*, int)' <br />
<br />
just not sure what it does.<br />
thanks]]></description>
			<content:encoded><![CDATA[Hi guys, reverse engineering a data structures piece of code.<br />
The is a function that reverses pointers in an array.<br />
The definitio <br />
void reverse(string**,int);<br />
<br />
why does string pointer have 2*?<br />
<br />
If I remove one, i get the error <br />
:cannot convert `std::string**' to `std::string*' for argument `1' to `void print(std::string*, int)' <br />
<br />
just not sure what it does.<br />
thanks]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[trying to create an upload function that writes to MS access database]]></title>
			<link>http://www.developersolution.com/showthread.php?tid=67</link>
			<pubDate>Tue, 09 Mar 2010 03:30:45 -0600</pubDate>
			<dc:creator>markses</dc:creator>
			<guid isPermaLink="false">http://www.developersolution.com/showthread.php?tid=67</guid>
			<description><![CDATA[Hi ya!<br />
<br />
im using asp.net thorugh visual studio, where im trying to create a upload function where i can upload files and send them to MS access database.<br />
<br />
i've used the upload function from the tool bar, provided by visual stuido.<br />
<br />
<br />
i've done the front end of the code, face front, also the back end of the cs file, however this error keeps on cuming?<br />
<br />
Can anyone help please!!!!!<br />
<br />
<br />
<br />
"""heres the error msg below""""<br />
<br />
<br />
<br />
Compiler Error Message: CS0260: Missing partial modifier on declaration of type 'ASPNetDB.WebForm1'; another partial declaration of this type exists<br />
<br />
Source Error:<br />
<br />
<br />
<br />
Line 13: /// Summary description for WebForm1.<br />
Line 14: /// &lt;/summary&gt;<br />
Line 15: public class WebForm1 : System.Web.UI.Page<br />
Line 16: {<br />
Line 17: private const string MDBFILE = "ASPNetDB.mdb";<br />
<br />
<br />
Source File: c:\Users\Master2\Users\newupload.aspx.cs Line: 15 <br />
<br />
<br />
"""""""""""""""""""""""""""""""""""""""""""""""""" """"""""<br />
<br />
please help]]></description>
			<content:encoded><![CDATA[Hi ya!<br />
<br />
im using asp.net thorugh visual studio, where im trying to create a upload function where i can upload files and send them to MS access database.<br />
<br />
i've used the upload function from the tool bar, provided by visual stuido.<br />
<br />
<br />
i've done the front end of the code, face front, also the back end of the cs file, however this error keeps on cuming?<br />
<br />
Can anyone help please!!!!!<br />
<br />
<br />
<br />
"""heres the error msg below""""<br />
<br />
<br />
<br />
Compiler Error Message: CS0260: Missing partial modifier on declaration of type 'ASPNetDB.WebForm1'; another partial declaration of this type exists<br />
<br />
Source Error:<br />
<br />
<br />
<br />
Line 13: /// Summary description for WebForm1.<br />
Line 14: /// &lt;/summary&gt;<br />
Line 15: public class WebForm1 : System.Web.UI.Page<br />
Line 16: {<br />
Line 17: private const string MDBFILE = "ASPNetDB.mdb";<br />
<br />
<br />
Source File: c:\Users\Master2\Users\newupload.aspx.cs Line: 15 <br />
<br />
<br />
"""""""""""""""""""""""""""""""""""""""""""""""""" """"""""<br />
<br />
please help]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[group by error : Expected end of statement]]></title>
			<link>http://www.developersolution.com/showthread.php?tid=66</link>
			<pubDate>Tue, 09 Mar 2010 03:21:46 -0600</pubDate>
			<dc:creator>andrewdis</dc:creator>
			<guid isPermaLink="false">http://www.developersolution.com/showthread.php?tid=66</guid>
			<description><![CDATA[hi...<br />
i have an error to total my products in group by<br />
any help please .....<br />
this is my code what is wrong?<br />
<br />
<br />
Code:<br />
&lt;BODY&gt;<br />
&lt;%<br />
 Set MyConn = Server.CreateObject("ADODB.Connection")<br />
 MyConn.Open "FILEDSN=c:/dsn/MyTable_dsn.dsn"<br />
 SQL_query = "SELECT products, SUM(sales) AS Totalsales"<br />
 FROM Customer<br />
 GROUP BY products;<br />
 Set RS = MyConn.Execute(SQL_query)<br />
 WHILE NOT RS.EOF<br />
 %&gt;<br />
 <br />
&lt;br&gt;<br />
BAG: &lt;%=RS("Total sales")%&gt;<br />
&lt;br&gt;<br />
<br />
&lt;%<br />
 RS.MoveNext<br />
 WEND<br />
 RS.Close<br />
 MyConn.Close<br />
%&gt;<br />
&lt;/BODY&gt;<br />
<br />
<br />
Thanks.]]></description>
			<content:encoded><![CDATA[hi...<br />
i have an error to total my products in group by<br />
any help please .....<br />
this is my code what is wrong?<br />
<br />
<br />
Code:<br />
&lt;BODY&gt;<br />
&lt;%<br />
 Set MyConn = Server.CreateObject("ADODB.Connection")<br />
 MyConn.Open "FILEDSN=c:/dsn/MyTable_dsn.dsn"<br />
 SQL_query = "SELECT products, SUM(sales) AS Totalsales"<br />
 FROM Customer<br />
 GROUP BY products;<br />
 Set RS = MyConn.Execute(SQL_query)<br />
 WHILE NOT RS.EOF<br />
 %&gt;<br />
 <br />
&lt;br&gt;<br />
BAG: &lt;%=RS("Total sales")%&gt;<br />
&lt;br&gt;<br />
<br />
&lt;%<br />
 RS.MoveNext<br />
 WEND<br />
 RS.Close<br />
 MyConn.Close<br />
%&gt;<br />
&lt;/BODY&gt;<br />
<br />
<br />
Thanks.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[pearl to create files with russian names]]></title>
			<link>http://www.developersolution.com/showthread.php?tid=65</link>
			<pubDate>Tue, 09 Mar 2010 03:14:56 -0600</pubDate>
			<dc:creator>programmer100</dc:creator>
			<guid isPermaLink="false">http://www.developersolution.com/showthread.php?tid=65</guid>
			<description><![CDATA[Hi all,<br />
<br />
I'm trying to create files on a Windows XP machine that hold russian language content. The content is generated with perl scripts. The problem is that when I try to give the files meaningful russian names, the filenames come out garbled.<br />
<br />
For example:<br />
<br />
&#36;u = "работать" ;<br />
<br />
&#36;f = magic(&#36;u) ; # the magic function is what I am looking for...<br />
<br />
open O,"&gt;&#36;f" ;<br />
<br />
the kind of magic I am trying results in filenames like Ñ€Ð°Ð±Ð¾Ñ‚Ð°Ñ‚ÑŒ.html<br />
I've tried using encode/decode functions, but I'm obviously not doing it right.<br />
<br />
<br />
thanks]]></description>
			<content:encoded><![CDATA[Hi all,<br />
<br />
I'm trying to create files on a Windows XP machine that hold russian language content. The content is generated with perl scripts. The problem is that when I try to give the files meaningful russian names, the filenames come out garbled.<br />
<br />
For example:<br />
<br />
&#36;u = "работать" ;<br />
<br />
&#36;f = magic(&#36;u) ; # the magic function is what I am looking for...<br />
<br />
open O,"&gt;&#36;f" ;<br />
<br />
the kind of magic I am trying results in filenames like Ñ€Ð°Ð±Ð¾Ñ‚Ð°Ñ‚ÑŒ.html<br />
I've tried using encode/decode functions, but I'm obviously not doing it right.<br />
<br />
<br />
thanks]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[how to write data into csv file?]]></title>
			<link>http://www.developersolution.com/showthread.php?tid=64</link>
			<pubDate>Tue, 09 Mar 2010 02:59:36 -0600</pubDate>
			<dc:creator>daniel</dc:creator>
			<guid isPermaLink="false">http://www.developersolution.com/showthread.php?tid=64</guid>
			<description><![CDATA[Hi all, <br />
<br />
Does anyone know how to write data into csv file? I was using fwrite() to do this now but all its data will write into the 1st cell of the csv file only. Thanks in advance for anyone who offers help.]]></description>
			<content:encoded><![CDATA[Hi all, <br />
<br />
Does anyone know how to write data into csv file? I was using fwrite() to do this now but all its data will write into the 1st cell of the csv file only. Thanks in advance for anyone who offers help.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Bid On Freelancing Projects from Freelancer.com]]></title>
			<link>http://www.developersolution.com/showthread.php?tid=63</link>
			<pubDate>Sat, 06 Mar 2010 04:55:49 -0600</pubDate>
			<dc:creator>ved</dc:creator>
			<guid isPermaLink="false">http://www.developersolution.com/showthread.php?tid=63</guid>
			<description><![CDATA[Bid On Freelancing Projects from Freelancer.com]]></description>
			<content:encoded><![CDATA[Bid On Freelancing Projects from Freelancer.com]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[how to set up php.ini to send mail]]></title>
			<link>http://www.developersolution.com/showthread.php?tid=62</link>
			<pubDate>Wed, 03 Mar 2010 03:47:42 -0600</pubDate>
			<dc:creator>andrewdis</dc:creator>
			<guid isPermaLink="false">http://www.developersolution.com/showthread.php?tid=62</guid>
			<description><![CDATA[I have php running wonderfully on my local win2000 machine yet don't know what to do in order to send mail using php and calling the mail function.<br />
<br />
My internet provider requires an outgoing mail server username and password which is no problem when using Outlook as there is a proper space to enter it, is this even an issue??? Seems like it would be.<br />
<br />
Here is my php code which works just fine on the remote server: &lt;b&gt;mail(&#36;to, &#36;subject, &#36;body, &#36;headers); &lt;/b&gt;<br />
<br />
What do I put in my local machine php.ini file and where? Or other tips, thanks so much.]]></description>
			<content:encoded><![CDATA[I have php running wonderfully on my local win2000 machine yet don't know what to do in order to send mail using php and calling the mail function.<br />
<br />
My internet provider requires an outgoing mail server username and password which is no problem when using Outlook as there is a proper space to enter it, is this even an issue??? Seems like it would be.<br />
<br />
Here is my php code which works just fine on the remote server: &lt;b&gt;mail(&#36;to, &#36;subject, &#36;body, &#36;headers); &lt;/b&gt;<br />
<br />
What do I put in my local machine php.ini file and where? Or other tips, thanks so much.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[How to send email in php?]]></title>
			<link>http://www.developersolution.com/showthread.php?tid=61</link>
			<pubDate>Wed, 03 Mar 2010 02:58:40 -0600</pubDate>
			<dc:creator>markses</dc:creator>
			<guid isPermaLink="false">http://www.developersolution.com/showthread.php?tid=61</guid>
			<description><![CDATA[I am trying a code in php. Can anyone please tell me how to send email in php?<br />
<br />
Thanks]]></description>
			<content:encoded><![CDATA[I am trying a code in php. Can anyone please tell me how to send email in php?<br />
<br />
Thanks]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Having problem with ajax and php using POST]]></title>
			<link>http://www.developersolution.com/showthread.php?tid=60</link>
			<pubDate>Tue, 02 Mar 2010 05:00:14 -0600</pubDate>
			<dc:creator>daniel</dc:creator>
			<guid isPermaLink="false">http://www.developersolution.com/showthread.php?tid=60</guid>
			<description><![CDATA[Hi Guys,<br />
A client has asked me to build a website with a login system. I thought it'd be a nice touch to add some AJAX in to validate the form on submit.<br />
<br />
I just can't seem to get it to work.<br />
<br />
Here's my HTML Form.<br />
<br />
HTML Code:<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>&lt;form name="loginForm" onsubmit="ajaxFunction()"&gt;<br />
&lt;p&gt;Username<br />
&lt;input type="text" id="username" /&gt;<br />
&lt;/p&gt;<br />
&lt;p&gt;Password<br />
&lt;input type="password" id="password" /&gt;<br />
&lt;/p&gt;<br />
&lt;div id="result"&gt;&lt;/div&gt;<br />
&lt;p&gt;<br />
&lt;input type="sumbit" value="Log In" /&gt;&lt;!--I've tried this line with the onclick="ajaxFunction()" instead of on the form tag--&gt;<br />
&lt;/p&gt;<br />
&lt;/form&gt;</code></div></div>
<br />
Here's my J<strong></strong><br />
<br />
Code:<br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>&lt;script language="javascript" type="text/javascript"&gt;<br />
&lt;!-- <br />
//Browser Support Code<br />
function ajaxFunction(){<br />
&nbsp;&nbsp;&nbsp;&nbsp;var ajaxRequest;&nbsp;&nbsp;// The variable that makes Ajax possible!<br />
&nbsp;&nbsp;&nbsp;&nbsp;var params;<br />
&nbsp;&nbsp;&nbsp;&nbsp;//make the Ajax Object<br />
&nbsp;&nbsp;&nbsp;&nbsp;try{<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// Opera 8.0+, Firefox, Safari<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ajaxRequest = new XMLHttpRequest();<br />
&nbsp;&nbsp;&nbsp;&nbsp;} catch (e){<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// Internet Explorer Browsers<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;try{<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ajaxRequest = new ActiveXObject("Msxml2.XMLHTTP");<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;} catch (e) {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;try{<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ajaxRequest = new ActiveXObject("Microsoft.XMLHTTP");<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;} catch (e){<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// Something went wrong<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;alert("Your browser broke!");<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return false;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;// Create a function that will receive data sent from the server<br />
&nbsp;&nbsp;&nbsp;&nbsp;ajaxRequest.onreadystatechange = function(){<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if(ajaxRequest.readyState == 4 &amp;&amp; ajaxRequest.status == 200){<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;var ajaxDisplay = document.getElementById('result');<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ajaxDisplay.innerHTML = ajaxRequest.responseText;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;var username = document.getElementById('username').value;<br />
&nbsp;&nbsp;&nbsp;&nbsp;var password = document.getElementById('password').value;<br />
&nbsp;&nbsp;&nbsp;&nbsp;ajaxRequest.open("POST", "login.php");<br />
&nbsp;&nbsp;&nbsp;&nbsp;ajaxRequest.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');<br />
&nbsp;&nbsp;&nbsp;&nbsp;ajaxRequest.send('username=' + username + '&amp;password=' + password); <br />
}<br />
<br />
//--&gt;<br />
&lt;/script&gt;</code></div></div>
<br />
And lastly, my PHP code.<br />
<br />
<br />
PHP Code:<br />
<br />
<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Code:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">&lt;?php&nbsp;<br /></span><span style="color: #007700">include&nbsp;</span><span style="color: #DD0000">'private/config.php'</span><span style="color: #007700">;&nbsp;<br /><br /></span><span style="color: #0000BB">&#36;username&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">&#36;_POST</span><span style="color: #007700">[</span><span style="color: #DD0000">'username'</span><span style="color: #007700">&#93;;&nbsp;<br /></span><span style="color: #0000BB">&#36;password&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">&#36;_POST</span><span style="color: #007700">[</span><span style="color: #DD0000">'password'</span><span style="color: #007700">&#93;;&nbsp;<br /></span><span style="color: #0000BB">&#36;query&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #DD0000">"SELECT&nbsp;UserName,&nbsp;Pass&nbsp;FROM&nbsp;user&nbsp;WHERE&nbsp;UserName=&#092;""</span><span style="color: #007700">.</span><span style="color: #0000BB">&#36;username</span><span style="color: #007700">.</span><span style="color: #DD0000">"&#092;"&nbsp;AND&nbsp;Pass=&#092;""</span><span style="color: #007700">.</span><span style="color: #0000BB">&#36;password</span><span style="color: #007700">.</span><span style="color: #DD0000">"&#092;""</span><span style="color: #007700">;&nbsp;<br /><br /></span><span style="color: #0000BB">&#36;connection&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">mysql_connect</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;host</span><span style="color: #007700">,</span><span style="color: #0000BB">&#36;un</span><span style="color: #007700">,</span><span style="color: #0000BB">&#36;pass</span><span style="color: #007700">)&nbsp;or&nbsp;die(</span><span style="color: #DD0000">"no&nbsp;connection"</span><span style="color: #007700">);&nbsp;<br /></span><span style="color: #0000BB">mysql_select_db</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;database</span><span style="color: #007700">)&nbsp;or&nbsp;die(&nbsp;</span><span style="color: #DD0000">"Unable&nbsp;to&nbsp;select&nbsp;database"</span><span style="color: #007700">);&nbsp;<br /></span><span style="color: #0000BB">&#36;result&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">mysql_query</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;query</span><span style="color: #007700">)&nbsp;or&nbsp;die&nbsp;(</span><span style="color: #DD0000">"query&nbsp;failed"</span><span style="color: #007700">);&nbsp;<br /></span><span style="color: #0000BB">&#36;num_rows&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">mysql_num_rows</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;result</span><span style="color: #007700">);&nbsp;<br />if(</span><span style="color: #0000BB">&#36;num_rows</span><span style="color: #007700">==</span><span style="color: #0000BB">1</span><span style="color: #007700">){&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;echo&nbsp;(</span><span style="color: #DD0000">"login&nbsp;successful"</span><span style="color: #007700">);&nbsp;<br />}&nbsp;else&nbsp;{&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;echo&nbsp;(</span><span style="color: #0000BB">&#36;username&nbsp;</span><span style="color: #007700">.&nbsp;</span><span style="color: #0000BB">&#36;password</span><span style="color: #007700">);&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />}&nbsp;<br /></span><span style="color: #0000BB">mysql_close</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;connection</span><span style="color: #007700">);&nbsp;<br /></span><span style="color: #0000BB">?&gt;</span></code></div></div></div>
I appreciate that I'm practically passing the problem onto you guys, but I really need this done. Thanks alot for any help you can give]]></description>
			<content:encoded><![CDATA[Hi Guys,<br />
A client has asked me to build a website with a login system. I thought it'd be a nice touch to add some AJAX in to validate the form on submit.<br />
<br />
I just can't seem to get it to work.<br />
<br />
Here's my HTML Form.<br />
<br />
HTML Code:<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>&lt;form name="loginForm" onsubmit="ajaxFunction()"&gt;<br />
&lt;p&gt;Username<br />
&lt;input type="text" id="username" /&gt;<br />
&lt;/p&gt;<br />
&lt;p&gt;Password<br />
&lt;input type="password" id="password" /&gt;<br />
&lt;/p&gt;<br />
&lt;div id="result"&gt;&lt;/div&gt;<br />
&lt;p&gt;<br />
&lt;input type="sumbit" value="Log In" /&gt;&lt;!--I've tried this line with the onclick="ajaxFunction()" instead of on the form tag--&gt;<br />
&lt;/p&gt;<br />
&lt;/form&gt;</code></div></div>
<br />
Here's my J<strong></strong><br />
<br />
Code:<br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>&lt;script language="javascript" type="text/javascript"&gt;<br />
&lt;!-- <br />
//Browser Support Code<br />
function ajaxFunction(){<br />
&nbsp;&nbsp;&nbsp;&nbsp;var ajaxRequest;&nbsp;&nbsp;// The variable that makes Ajax possible!<br />
&nbsp;&nbsp;&nbsp;&nbsp;var params;<br />
&nbsp;&nbsp;&nbsp;&nbsp;//make the Ajax Object<br />
&nbsp;&nbsp;&nbsp;&nbsp;try{<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// Opera 8.0+, Firefox, Safari<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ajaxRequest = new XMLHttpRequest();<br />
&nbsp;&nbsp;&nbsp;&nbsp;} catch (e){<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// Internet Explorer Browsers<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;try{<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ajaxRequest = new ActiveXObject("Msxml2.XMLHTTP");<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;} catch (e) {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;try{<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ajaxRequest = new ActiveXObject("Microsoft.XMLHTTP");<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;} catch (e){<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// Something went wrong<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;alert("Your browser broke!");<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return false;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;// Create a function that will receive data sent from the server<br />
&nbsp;&nbsp;&nbsp;&nbsp;ajaxRequest.onreadystatechange = function(){<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if(ajaxRequest.readyState == 4 &amp;&amp; ajaxRequest.status == 200){<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;var ajaxDisplay = document.getElementById('result');<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ajaxDisplay.innerHTML = ajaxRequest.responseText;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;var username = document.getElementById('username').value;<br />
&nbsp;&nbsp;&nbsp;&nbsp;var password = document.getElementById('password').value;<br />
&nbsp;&nbsp;&nbsp;&nbsp;ajaxRequest.open("POST", "login.php");<br />
&nbsp;&nbsp;&nbsp;&nbsp;ajaxRequest.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');<br />
&nbsp;&nbsp;&nbsp;&nbsp;ajaxRequest.send('username=' + username + '&amp;password=' + password); <br />
}<br />
<br />
//--&gt;<br />
&lt;/script&gt;</code></div></div>
<br />
And lastly, my PHP code.<br />
<br />
<br />
PHP Code:<br />
<br />
<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Code:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">&lt;?php&nbsp;<br /></span><span style="color: #007700">include&nbsp;</span><span style="color: #DD0000">'private/config.php'</span><span style="color: #007700">;&nbsp;<br /><br /></span><span style="color: #0000BB">&#36;username&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">&#36;_POST</span><span style="color: #007700">[</span><span style="color: #DD0000">'username'</span><span style="color: #007700">];&nbsp;<br /></span><span style="color: #0000BB">&#36;password&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">&#36;_POST</span><span style="color: #007700">[</span><span style="color: #DD0000">'password'</span><span style="color: #007700">];&nbsp;<br /></span><span style="color: #0000BB">&#36;query&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #DD0000">"SELECT&nbsp;UserName,&nbsp;Pass&nbsp;FROM&nbsp;user&nbsp;WHERE&nbsp;UserName=&#092;""</span><span style="color: #007700">.</span><span style="color: #0000BB">&#36;username</span><span style="color: #007700">.</span><span style="color: #DD0000">"&#092;"&nbsp;AND&nbsp;Pass=&#092;""</span><span style="color: #007700">.</span><span style="color: #0000BB">&#36;password</span><span style="color: #007700">.</span><span style="color: #DD0000">"&#092;""</span><span style="color: #007700">;&nbsp;<br /><br /></span><span style="color: #0000BB">&#36;connection&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">mysql_connect</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;host</span><span style="color: #007700">,</span><span style="color: #0000BB">&#36;un</span><span style="color: #007700">,</span><span style="color: #0000BB">&#36;pass</span><span style="color: #007700">)&nbsp;or&nbsp;die(</span><span style="color: #DD0000">"no&nbsp;connection"</span><span style="color: #007700">);&nbsp;<br /></span><span style="color: #0000BB">mysql_select_db</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;database</span><span style="color: #007700">)&nbsp;or&nbsp;die(&nbsp;</span><span style="color: #DD0000">"Unable&nbsp;to&nbsp;select&nbsp;database"</span><span style="color: #007700">);&nbsp;<br /></span><span style="color: #0000BB">&#36;result&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">mysql_query</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;query</span><span style="color: #007700">)&nbsp;or&nbsp;die&nbsp;(</span><span style="color: #DD0000">"query&nbsp;failed"</span><span style="color: #007700">);&nbsp;<br /></span><span style="color: #0000BB">&#36;num_rows&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">mysql_num_rows</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;result</span><span style="color: #007700">);&nbsp;<br />if(</span><span style="color: #0000BB">&#36;num_rows</span><span style="color: #007700">==</span><span style="color: #0000BB">1</span><span style="color: #007700">){&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;echo&nbsp;(</span><span style="color: #DD0000">"login&nbsp;successful"</span><span style="color: #007700">);&nbsp;<br />}&nbsp;else&nbsp;{&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;echo&nbsp;(</span><span style="color: #0000BB">&#36;username&nbsp;</span><span style="color: #007700">.&nbsp;</span><span style="color: #0000BB">&#36;password</span><span style="color: #007700">);&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />}&nbsp;<br /></span><span style="color: #0000BB">mysql_close</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;connection</span><span style="color: #007700">);&nbsp;<br /></span><span style="color: #0000BB">?&gt;</span></code></div></div></div>
I appreciate that I'm practically passing the problem onto you guys, but I really need this done. Thanks alot for any help you can give]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Determine order in where clause]]></title>
			<link>http://www.developersolution.com/showthread.php?tid=59</link>
			<pubDate>Tue, 02 Mar 2010 04:37:38 -0600</pubDate>
			<dc:creator>programmer100</dc:creator>
			<guid isPermaLink="false">http://www.developersolution.com/showthread.php?tid=59</guid>
			<description><![CDATA[Hi,<br />
<br />
currently I want to search (Dutch) postcodes using the following statement removing the possible white-space and case sensitivity <br />
<br />
Quote:<br />
where upper(replace(tbladdresses.zipcode,' ',''))='2279EK'  <br />
<br />
<br />
<br />
As the above 'where-statement' takes 10 seconds to return results, I wanted to speed-up this query by adding an additional clause making the new 'where statement':<br />
<br />
<br />
Quote:<br />
where tbladdresses.zipcode like '2279%' and upper(replace(tbladdresses.zipcode,' ',''))='2279EK'  <br />
<br />
<br />
Using only the first condition mysql performs fast; however adding the second condition makes it slow again.<br />
<br />
Is there a way I can force mysql to prioritize the query on the first condition first, and then let mysql handle the second condition?<br />
<br />
thanks]]></description>
			<content:encoded><![CDATA[Hi,<br />
<br />
currently I want to search (Dutch) postcodes using the following statement removing the possible white-space and case sensitivity <br />
<br />
Quote:<br />
where upper(replace(tbladdresses.zipcode,' ',''))='2279EK'  <br />
<br />
<br />
<br />
As the above 'where-statement' takes 10 seconds to return results, I wanted to speed-up this query by adding an additional clause making the new 'where statement':<br />
<br />
<br />
Quote:<br />
where tbladdresses.zipcode like '2279%' and upper(replace(tbladdresses.zipcode,' ',''))='2279EK'  <br />
<br />
<br />
Using only the first condition mysql performs fast; however adding the second condition makes it slow again.<br />
<br />
Is there a way I can force mysql to prioritize the query on the first condition first, and then let mysql handle the second condition?<br />
<br />
thanks]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Auto_increment in databases that do not support auto increment]]></title>
			<link>http://www.developersolution.com/showthread.php?tid=58</link>
			<pubDate>Tue, 02 Mar 2010 04:25:51 -0600</pubDate>
			<dc:creator>andrewdis</dc:creator>
			<guid isPermaLink="false">http://www.developersolution.com/showthread.php?tid=58</guid>
			<description><![CDATA[hi, <br />
<br />
I have a fill in the blanks question which says, <br />
<br />
In databases which do not support we must use a _________ to auto generate a numeric increment key.<br />
<br />
my answer is TRIGGER. can it also be LAST_INSERT_ID(id+1)<br />
<br />
I am confused about the second answer as that does not suit to the generic sense of the question. <br />
<br />
A wise word is highly appreciated. <br />
<br />
cheers]]></description>
			<content:encoded><![CDATA[hi, <br />
<br />
I have a fill in the blanks question which says, <br />
<br />
In databases which do not support we must use a _________ to auto generate a numeric increment key.<br />
<br />
my answer is TRIGGER. can it also be LAST_INSERT_ID(id+1)<br />
<br />
I am confused about the second answer as that does not suit to the generic sense of the question. <br />
<br />
A wise word is highly appreciated. <br />
<br />
cheers]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Paypal announcment of Resuming local bank withdrawals to India from Wednesday]]></title>
			<link>http://www.developersolution.com/showthread.php?tid=57</link>
			<pubDate>Sat, 27 Feb 2010 04:39:06 -0600</pubDate>
			<dc:creator>ved</dc:creator>
			<guid isPermaLink="false">http://www.developersolution.com/showthread.php?tid=57</guid>
			<description><![CDATA[Hello Guys,<br />
<br />
Finally <span style="font-weight: bold;">paypal has announced that they are resuming local bank transfers into India</span>!<br />
This is official Announcement of PayPal regarding local bank transfers in India from Paypal!<br />
<br />
Dear XXXXXX,<br />
<br />
We have been diligently working with the RBI and our business<br />
partners to resume Indian bank withdrawals for the thousands<br />
of Indian businesses who depend on PayPal to sell their goods<br />
or services in the global marketplace.<br />
<br />
Today, we are happy to announce that the RBI has allowed us<br />
to continue local bank withdrawals for settlements for exports<br />
of goods and services.  We are currently making changes to<br />
comply with Indian regulations for settlements for exports of<br />
goods and services, and we anticipate that, as of Wednesday,<br />
March 3rd, customers will be able to use our<br />
bank withdrawal service.  <br />
<br />
As part of the changes, you will be required to fill out a<br />
new field entitled 'Export Code' when you request a withdrawal.<br />
This information is required under the current laws of India in<br />
order to identify the nature of cross-border merchant transactions.  <br />
<br />
On Monday, March 1st, we will be back in touch with specific<br />
instructions on how you can move your money into your bank account. <br />
<br />
Moving forward, the RBI has told us that PayPal needs specific<br />
approvals to allow personal remittances to India, which we<br />
currently do not have.  Until we get these approvals, personal<br />
payments into India will remain suspended.  However, if you are<br />
an exporter, you will continue to be able to use the PayPal<br />
service for payments of goods and services.  In fact, with the<br />
changes we are making to our system, PayPal is now set to be a<br />
more powerful engine for exporters in India.  With purpose codes<br />
for export transactions and FIRCs (Foreign Inward Remittance<br />
Certificates), you should now be able to get the export<br />
related benefits you seek.]]></description>
			<content:encoded><![CDATA[Hello Guys,<br />
<br />
Finally <span style="font-weight: bold;">paypal has announced that they are resuming local bank transfers into India</span>!<br />
This is official Announcement of PayPal regarding local bank transfers in India from Paypal!<br />
<br />
Dear XXXXXX,<br />
<br />
We have been diligently working with the RBI and our business<br />
partners to resume Indian bank withdrawals for the thousands<br />
of Indian businesses who depend on PayPal to sell their goods<br />
or services in the global marketplace.<br />
<br />
Today, we are happy to announce that the RBI has allowed us<br />
to continue local bank withdrawals for settlements for exports<br />
of goods and services.  We are currently making changes to<br />
comply with Indian regulations for settlements for exports of<br />
goods and services, and we anticipate that, as of Wednesday,<br />
March 3rd, customers will be able to use our<br />
bank withdrawal service.  <br />
<br />
As part of the changes, you will be required to fill out a<br />
new field entitled 'Export Code' when you request a withdrawal.<br />
This information is required under the current laws of India in<br />
order to identify the nature of cross-border merchant transactions.  <br />
<br />
On Monday, March 1st, we will be back in touch with specific<br />
instructions on how you can move your money into your bank account. <br />
<br />
Moving forward, the RBI has told us that PayPal needs specific<br />
approvals to allow personal remittances to India, which we<br />
currently do not have.  Until we get these approvals, personal<br />
payments into India will remain suspended.  However, if you are<br />
an exporter, you will continue to be able to use the PayPal<br />
service for payments of goods and services.  In fact, with the<br />
changes we are making to our system, PayPal is now set to be a<br />
more powerful engine for exporters in India.  With purpose codes<br />
for export transactions and FIRCs (Foreign Inward Remittance<br />
Certificates), you should now be able to get the export<br />
related benefits you seek.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Logout code in C#- asp.net]]></title>
			<link>http://www.developersolution.com/showthread.php?tid=56</link>
			<pubDate>Sat, 27 Feb 2010 03:29:59 -0600</pubDate>
			<dc:creator>programmer100</dc:creator>
			<guid isPermaLink="false">http://www.developersolution.com/showthread.php?tid=56</guid>
			<description><![CDATA[hii,<br />
i m facing problem in logout code in asp.net c#.<br />
please give the code which can do:-<br />
1) session end<br />
2) when pressing back button after logout it should be redirect to login page.<br />
3)by pasting url of somebody's account in address bar it should not enter in the account and redirect to login page.<br />
<br />
please provide code for both "session" and "authentication" method.<br />
thank you for your time..]]></description>
			<content:encoded><![CDATA[hii,<br />
i m facing problem in logout code in asp.net c#.<br />
please give the code which can do:-<br />
1) session end<br />
2) when pressing back button after logout it should be redirect to login page.<br />
3)by pasting url of somebody's account in address bar it should not enter in the account and redirect to login page.<br />
<br />
please provide code for both "session" and "authentication" method.<br />
thank you for your time..]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Don't know where to start: PHP script to update]]></title>
			<link>http://www.developersolution.com/showthread.php?tid=55</link>
			<pubDate>Fri, 26 Feb 2010 05:08:26 -0600</pubDate>
			<dc:creator>programmer100</dc:creator>
			<guid isPermaLink="false">http://www.developersolution.com/showthread.php?tid=55</guid>
			<description><![CDATA[Hello All,<br />
<br />
<br />
I'm going round in circles trying to find out exactly what php script I need to create a webpage I'm planning to develop.<br />
Basically, it's a classifieds web page, a "service required" (i.e. people looking for help) ad listing.<br />
A person would enter their details as to what they want by ticking a number of tick boxes and by filling out fields - name, email, extra info etc<br />
This information when submitted would then update another page which is chosen by the location they filled out in the initial form.<br />
<br />
I would also like for results to be shown to them of all the possible 'matches' of service providers they could have dependent on the criteria they selected. <br />
<br />
If anyone could tell me what I need, what type of script will help me that I could try to modify to suit my own goals, I'd be incredibly grateful.<br />
<br />
Many thanks.]]></description>
			<content:encoded><![CDATA[Hello All,<br />
<br />
<br />
I'm going round in circles trying to find out exactly what php script I need to create a webpage I'm planning to develop.<br />
Basically, it's a classifieds web page, a "service required" (i.e. people looking for help) ad listing.<br />
A person would enter their details as to what they want by ticking a number of tick boxes and by filling out fields - name, email, extra info etc<br />
This information when submitted would then update another page which is chosen by the location they filled out in the initial form.<br />
<br />
I would also like for results to be shown to them of all the possible 'matches' of service providers they could have dependent on the criteria they selected. <br />
<br />
If anyone could tell me what I need, what type of script will help me that I could try to modify to suit my own goals, I'd be incredibly grateful.<br />
<br />
Many thanks.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Data base design]]></title>
			<link>http://www.developersolution.com/showthread.php?tid=54</link>
			<pubDate>Fri, 26 Feb 2010 04:12:40 -0600</pubDate>
			<dc:creator>markses</dc:creator>
			<guid isPermaLink="false">http://www.developersolution.com/showthread.php?tid=54</guid>
			<description><![CDATA[Hello All,<br />
<br />
I am designing a DB to use at work. I have two tables:<br />
<br />
Table #1- Table #2<br />
<br />
tblEmployee tblTeam<br />
<span style="font-weight: bold;">fld EmpID</span> <span style="font-weight: bold;">fldTeamID</span><br />
fldEmpFName fldTeamLeaderID<br />
fldEmpLName fldTeamDesc<br />
fldTeamID<br />
<br />
The bold fields are the primary keys<br />
The problem I am having, if it is a problem, is that the agent is connected to the team via tblEmployee.fldTeamID and tblTeam.fldTeamID, now the team leader would be connected via tblEmployee.fld EmpID and tblTeam.fldTeamLeaderID<br />
<br />
Is it reasonable that tables are connected to each other twice?<br />
<br />
Cheers,]]></description>
			<content:encoded><![CDATA[Hello All,<br />
<br />
I am designing a DB to use at work. I have two tables:<br />
<br />
Table #1- Table #2<br />
<br />
tblEmployee tblTeam<br />
<span style="font-weight: bold;">fld EmpID</span> <span style="font-weight: bold;">fldTeamID</span><br />
fldEmpFName fldTeamLeaderID<br />
fldEmpLName fldTeamDesc<br />
fldTeamID<br />
<br />
The bold fields are the primary keys<br />
The problem I am having, if it is a problem, is that the agent is connected to the team via tblEmployee.fldTeamID and tblTeam.fldTeamID, now the team leader would be connected via tblEmployee.fld EmpID and tblTeam.fldTeamLeaderID<br />
<br />
Is it reasonable that tables are connected to each other twice?<br />
<br />
Cheers,]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[sending custome headers with HttpResponse]]></title>
			<link>http://www.developersolution.com/showthread.php?tid=53</link>
			<pubDate>Fri, 26 Feb 2010 03:55:24 -0600</pubDate>
			<dc:creator>andrewdis</dc:creator>
			<guid isPermaLink="false">http://www.developersolution.com/showthread.php?tid=53</guid>
			<description><![CDATA[Hey Guys. <br />
I was trying to send a custom header to another page for accessing its api. <br />
<br />
I am using this HttpResponse::setHeader ( 'customname', 'myvalue' );<br />
<br />
What class do I need to use for this? Does PHP5.1 and above have this inbuilt or do I need to include some particular class to use this? How do I create an instance of this class? Any help is appreciated.]]></description>
			<content:encoded><![CDATA[Hey Guys. <br />
I was trying to send a custom header to another page for accessing its api. <br />
<br />
I am using this HttpResponse::setHeader ( 'customname', 'myvalue' );<br />
<br />
What class do I need to use for this? Does PHP5.1 and above have this inbuilt or do I need to include some particular class to use this? How do I create an instance of this class? Any help is appreciated.]]></content:encoded>
		</item>
	</channel>
</rss>