Search found 1026 matches

by tecktalkcm0391
Tue Mar 23, 2010 2:27 pm
Forum: PHP - Theory and Design
Topic: Versioning and Tracking
Replies: 9
Views: 2590

Re: Versioning and Tracking

I'm still confused about subversion, etc. Can anyone point me in the right direction? Tutorial, or a good beginners explanation?

Thanks!
by tecktalkcm0391
Sun Feb 21, 2010 11:28 am
Forum: Regex
Topic: Matching Empty MySQL Query
Replies: 4
Views: 2669

Re: Matching Empty MySQL Query

Thanks so much, its working now!
by tecktalkcm0391
Sun Feb 21, 2010 10:50 am
Forum: Regex
Topic: Matching Empty MySQL Query
Replies: 4
Views: 2669

Re: Matching Empty MySQL Query

I tried adding an asterisk, and it doesn't seem to be working right. When i use preg_match and have it return matches, it only shows two matches, even if there are multiple matches of '', possible...

Any more ideas?
by tecktalkcm0391
Sat Feb 20, 2010 5:16 pm
Forum: Regex
Topic: Matching Empty MySQL Query
Replies: 4
Views: 2669

Matching Empty MySQL Query

How can I make a regular expression to match whenever there is a ('', '', '', '') in a string. There can be as many '', in a row and it would match it... so it would match ('', '') and ('', '', '', '', '', '', '') as well as ('', '', '', '')

Thanks so much! I just can't figure it out.
by tecktalkcm0391
Fri Feb 12, 2010 4:30 pm
Forum: PHP - Theory and Design
Topic: Versioning and Tracking
Replies: 9
Views: 2590

Re: Versioning and Tracking

I have a choice between Mercurial and Git, any input on which one is better? Thanks!
by tecktalkcm0391
Fri Feb 12, 2010 2:32 pm
Forum: PHP - Theory and Design
Topic: Versioning and Tracking
Replies: 9
Views: 2590

Re: Versioning and Tracking

I found out that my host has SVN and I already have it, I just need to set it up.

Any suggestions for the layout for the projects?
by tecktalkcm0391
Mon Feb 08, 2010 2:49 pm
Forum: PHP - Theory and Design
Topic: Versioning and Tracking
Replies: 9
Views: 2590

Re: Versioning and Tracking

Thanks. How do you use Subversion? Do you have to install it on your server, because I have shared hosting, and I can't do that. I like Mantis for the most part, but I'm still going to look into it, as well as Version Cue. With Flash, I was definitely going to use ActionScript files... Its a private...
by tecktalkcm0391
Tue Feb 02, 2010 8:24 pm
Forum: PHP - Code
Topic: sitemap generator
Replies: 1
Views: 152

Re: sitemap generator

by tecktalkcm0391
Tue Feb 02, 2010 7:55 pm
Forum: PHP - Theory and Design
Topic: Versioning and Tracking
Replies: 9
Views: 2590

Versioning and Tracking

I am doing a Flash / PHP / MySQL website/application, and I wanted to see what the best way was to do good versioning and tracking of bugs/progress.

Any suggestions on the best ways to do this?

Thanks!
by tecktalkcm0391
Sat Jan 30, 2010 6:13 pm
Forum: PHP - Code
Topic: Print Array nicely - str_replace error
Replies: 8
Views: 1069

Re: Print Array nicely - str_replace error

Haha, thanks that's a lot easier :)
by tecktalkcm0391
Sat Jan 30, 2010 2:25 pm
Forum: PHP - Code
Topic: Print Array nicely - str_replace error
Replies: 8
Views: 1069

Re: str_replace error

Okay I got it now, below is the final code. What I did was create a page to post data, so I can see what was being posted, but when you use print_r it prints out correctly spaced, but only if you look at the source code, because it has no HTML codes to space it correctly in the browser, so this will...
by tecktalkcm0391
Sat Jan 30, 2010 1:58 pm
Forum: PHP - Code
Topic: Print Array nicely - str_replace error
Replies: 8
Views: 1069

Re: str_replace error

Oh, okay. Then how do you do the same replacement but only one time.
by tecktalkcm0391
Sat Jan 30, 2010 1:08 pm
Forum: PHP - Code
Topic: Print Array nicely - str_replace error
Replies: 8
Views: 1069

Print Array nicely - str_replace error

I can't figure out why the following code keeps returning this error: Fatal error: Only variables can be passed by reference in file.php on line 10       $post = print_r($_POST, true);     $post = explode("\n", $post);     $output = '';     $add = '';     $l = '<br>';     $tab = '&nbsp...
by tecktalkcm0391
Tue Dec 15, 2009 6:27 pm
Forum: PHP - Code
Topic: Apache Login
Replies: 2
Views: 262

Re: Apache Login

Yeah, I found that after posting this. Does anybody know a quick way to work around the IE update? Is there anyway to set the username and password then redirect, so it will work?
by tecktalkcm0391
Tue Dec 15, 2009 5:10 pm
Forum: PHP - Code
Topic: Apache Login
Replies: 2
Views: 262

Apache Login

I'm trying to have PHP redirect into a Apache-Password Protected folder. The following code works in Chrome and Firefox, but not in IE

Code: Select all

header("Location: http://username:password@website.com/members/");
Is there a way to get around the IE problem, or to do this better? Thanks!