Search found 2395 matches
- Fri Jul 13, 2012 11:20 am
- Forum: General Discussion
- Topic: Possible New Features in PHP 5.5
- Replies: 4
- Views: 2715
Re: Possible New Features in PHP 5.5
Frankly, the most practical one I'm glad about is that empty() will work without having to pass a variable. It's quite bothersome that it's been a language construct instead of a function up to this point. I also like the idea of being able to use array access on strings and such.
- Tue Jul 10, 2012 11:57 pm
- Forum: General Discussion
- Topic: Charge for Upload Time
- Replies: 40
- Views: 19210
Re: Charge for Upload Time
On the contrary, I'm loving this digression. This actually brings me to another question: How much do you charge for what?
- Tue Jul 10, 2012 11:56 pm
- Forum: General Discussion
- Topic: How much do you change for what?
- Replies: 3
- Views: 2298
How much do you change for what?
Hello, world! I'm curious, what do you charge for doing different things? How would you compare that against your skill level? How much for system administration? Programming? DB administration? Meetings? Years of experience? How do you bill, mostly hourly or mostly by bid? How does that pertain to ...
- Mon Jul 09, 2012 10:34 pm
- Forum: General Discussion
- Topic: Charge for Upload Time
- Replies: 40
- Views: 19210
Re: Charge for Upload Time
Indeed, this is quite an interesting discussion. Well said, Christopher.
- Tue Jun 26, 2012 10:13 am
- Forum: General Discussion
- Topic: Paypal process without redirect to Paypal site
- Replies: 4
- Views: 3337
Re: Paypal process without redirect to Paypal site
I believe the API for paying without going to their site is called PayPal Payments Pro.
- Sun Jun 24, 2012 10:15 pm
- Forum: The Enterprise
- Topic: Generalist Vs Specialist
- Replies: 6
- Views: 26821
- Sun Jun 24, 2012 10:11 pm
- Forum: General Discussion
- Topic: my program just gone crazy
- Replies: 5
- Views: 2208
Re: my program just gone crazy
What is the "view source" you are talking about? Another software? Ah, I should have been more clear. Right-click on the page in your browser and select "View source". Browse through the code that comes up and look for the text field, and see if it has a value set in the source ...
- Sun Jun 24, 2012 5:41 pm
- Forum: PHP - Theory and Design
- Topic: How to implement an Email Change Function?
- Replies: 3
- Views: 6704
Re: How to implement an Email Change Function?
The validation email to the new account is just to make sure the email is correct, as my application requires a valid email so I can contact the user. It seems to me like that's the user's problem, not yours. However, there is a security problem with not confirming it. A malicious user could concei...
- Sun Jun 24, 2012 4:47 pm
- Forum: General Discussion
- Topic: my program just gone crazy
- Replies: 5
- Views: 2208
Re: my program just gone crazy
Are you talking about some HTML content, or just the value of the text field? Perhaps you could use view source to see if your code is populating the field's value, or the browser. Without any code, we can't give much guidance, an excerpt where the problem seems to be originating would be helpful.
- Sun Jun 24, 2012 4:41 pm
- Forum: PHP - Code
- Topic: Coding a website scraper using PHP
- Replies: 2
- Views: 746
Re: Coding a website scraper using PHP
What is the problem?
- Sat Jun 23, 2012 11:53 am
- Forum: General Discussion
- Topic: Who's using git? I've got questions
- Replies: 6
- Views: 2936
Re: Who's using git? I've got questions
Excellent advice Chris. @flying_circus, my method is very similar to Chris's, except I usually do what you're doing on the server instead of using a private GitHub repository. I create a "git" user, dedicated to managing any Git repositories. In all, I have three clones of the repository: ...
- Thu Jun 21, 2012 11:24 am
- Forum: General Discussion
- Topic: Help me!
- Replies: 1
- Views: 1247
Re: Help me!
Are you looking for a project just for the learning experience?
- Thu Jun 21, 2012 11:22 am
- Forum: General Discussion
- Topic: Charge for Upload Time
- Replies: 40
- Views: 19210
Re: Charge for Upload Time
Whole site is what I was talking about.
- Fri Jun 15, 2012 1:07 pm
- Forum: General Discussion
- Topic: PHP alert?
- Replies: 21
- Views: 11786
Re: PHP alert?
Code: Select all
php > $array = array('name' => 'Jerry', 'age' => 30);
php > echo $array;
Array
php > $string = (string) $array;
php > echo $string;
Array
php > var_dump($string);
string(5) "Array"
- Fri Jun 15, 2012 1:04 pm
- Forum: General Discussion
- Topic: PHP alert?
- Replies: 21
- Views: 11786
Re: PHP alert?
I just mean that echo automatically casts the variable to string, and outputs whatever that gives.