Mark Biek

11,791
Reputation
1150 views

Registered User

Name Mark Biek
Member for 1 year
Seen 18 mins ago
Website
Location Louisville, KY, US
Age 31
Stackoverflow is the best website EVAR!
Nov
24
revised Can AppleScript take output of shell script and put in paste buffer?
deleted 19 characters in body; edited title
Nov
24
comment make variables available outside function in PHP ?
Agreed. I'd recommend having the function return those values as an array rather than using globals.
Nov
20
revised PHP: close a connection early
added 34 characters in body; edited tags
Nov
17
revised Working with arrays in php
added 109 characters in body
Nov
17
revised Working with arrays in php
deleted 12 characters in body
Nov
14
revised malloc and free
added 36 characters in body
Nov
13
revised The infamous activity indicator: What happens if I do want to cancel loading a web page after XXX seconds?
added 20 characters in body; edited title
Nov
12
revised pass variable to child in javascript?
deleted 8 characters in body
Nov
12
awarded  Popular Question
Nov
11
revised storing a TextBox value(in a html page) in php array variable which is then stored in a session
added 20 characters in body
Nov
11
comment Strange IE7 Printing Bug
How about a screenshot?
Nov
10
revised Getting the previous sibling of an element using JQuery
deleted 33 characters in body; edited title
Nov
10
revised Creating same login page for different users
added 43 characters in body
Nov
10
comment Problem positioning a logo and a banner in Firefox using CSS
The borders are there just to make it easier to see where the divs are when they don't have any content in them.
Nov
10
answered Problem positioning a logo and a banner in Firefox using CSS
Nov
10
revised Problem positioning a logo and a banner in Firefox using CSS
added 39 characters in body; edited title
Nov
10
revised how to pass embed code in javascript
added 847 characters in body
Nov
10
answered how to pass embed code in javascript
Nov
10
comment Replace the TD tag
In fact, there are certain cases where doing this kind of replacement can actually cause memory exceptions in IE.
Nov
10
revised Replace the TD tag
added 30 characters in body
Nov
10
awarded  Popular Question
Nov
10
comment URL Mod-Rewrite
Like MalphasWats says, $_GET['service'] should do the trick. You might add a print_r($_GET); just to see what the contents of $_GET actually are.
Nov
9
comment URL Mod-Rewrite
The first group of () is $1, the second $2, and so on. So you can capture multiple things and then use them in the rewrite part of the rule.
Nov
9
answered URL Mod-Rewrite
Nov
9
comment I’m looking for a Perl-friendly versioning solution that I can run on Windows.
Check out: VisualSVN stackoverflow.com/questions/218507/…
Nov
9
revised How do I pop up an alert in Javascript?
http://www.amazon.com/Elements-Style-Fourth-William-Strunk/dp/020530902X
Nov
5
comment please answer my queation
You'll have better luck if you try something and ask specific questions about what's not working. People aren't going to do your work for you.
Nov
5
revised please answer my queation
edited tags
Nov
5
revised What does ** operator do in Python?
added 6 characters in body
Nov
5
revised Return zero for negative integers
edited tags
Nov
4
comment Persisting more than one object in Delphi 7
@Ken Good catch. I completely missed that. Voted to close
Nov
4
revised Persisting more than one object in Delphi 7
deleted 28 characters in body; edited tags; edited title
Nov
4
revised Javascript regular expression not working in Firefox
added 10 characters in body
Nov
4
revised Javascript regular expression not working in Firefox
deleted 52 characters in body; edited tags; edited title
Nov
2
revised Sharing authentication between Glassfish and Apache?
edited tags
Nov
2
revised Can a variable be used to define the size of an array on the stack in c?
deleted 29 characters in body; edited title
Oct
31
awarded  Nice Answer
Oct
30
comment Which approach is best for preventing a SQL injection?
Dupe: stackoverflow.com/questions/60174/…
Oct
30
comment Is the form tag necessary?
@John, excellent point.
Oct
30
answered Is the form tag necessary?
Oct
28
accepted Parameters on php files run via cron
Oct
28
awarded  Enlightened
Oct
28
awarded  Nice Answer
Oct
27
comment Layout problems in IE7
Glad to hear it :)
Oct
27
comment Layout problems in IE7
There may be a better solution for your specific case but you could always use a Browser Conditional to just adjust the margins in IE: stackoverflow.com/questions/46124/…
Oct
27
accepted Twitter app development best practices?
Oct
27
revised Applying more CSS properties within one line
added 3 characters in body
Oct
27
revised Layout problems in IE7
deleted 53 characters in body
Oct
27
answered Layout problems in IE7
Oct
14
comment Why is this bad code?
I can imagine a scenario where the username passed in is somehow different from the one pulled from the database. But the function should be named in way to make that clear if that's the case.