Search found 4 matches

by alisaWL
Mon Oct 12, 2009 5:30 am
Forum: General Discussion
Topic: concurrent querries to multiple databases (php + mysql )
Replies: 0
Views: 376

concurrent querries to multiple databases (php + mysql )

Hi Guys, I have a set of databases: db1, db2, db3.....dbn and a set of queries:q1, q2, q3....qn I would like to submit each query to its corresponding database concurrently and display all the results (r1...rn) on a web page as soon as all queries are executed. My question is, how do i do this with ...
by alisaWL
Fri Jul 10, 2009 10:38 am
Forum: General Discussion
Topic: Setting up free version control
Replies: 3
Views: 457

Re: Setting up free version control

Thanks a lot, genconv!

I successfully set up SVN on my PC, with the help of that manual.
Some of the downloads didn't work, the correct files can be found in this manual:
http://www.robgonda.com/blog/index.cfm/ ... es-or-less

:)
by alisaWL
Fri Jul 10, 2009 3:48 am
Forum: General Discussion
Topic: Setting up free version control
Replies: 3
Views: 457

Setting up free version control

I would like to set up version control for my sites (preferably with SVN, because it's supported by Dreamweaver). Whats the best way to do this for free? My host will not let me install a server. Can I set the server and client both on my PC? How will that work? Please share any thoughts, guides or ...
by alisaWL
Tue Jun 30, 2009 5:09 am
Forum: PHP - Code
Topic: Escaped characters substitution not working in double quote
Replies: 3
Views: 82

Escaped characters substitution not working in double quote

I have some strange behavior on this very simple test case: <?php echo 'single: my \n \$ \t string'; echo '<br/>'; echo "double: my \n \$ \t string"; ?> output: single: my \n \$ \t string double: my $ string What am I missing? Shouldn't there be a newline and a tab in the double quote stri...