TalkPHP
 
 
Account Login
Latest Articles
» The basic usage of PHPTAL, a XML/XHTML template library for PHP
» Vulnerable methods and the areas they are commonly trusted in.
» Simple way to protect a form from bot
» The Basics On: How Session Stealing Works
» How to keep your forms from double posting data
IRC Channel
IRC Speech Bubble Join the friendly bunch on IRC...
(#TalkPHP on Freenode)

...Also available via a web interface.

See this thread for information on the TalkPHP Free Hugs Initiative™. Subject to availability.
Associates
Associates
CSS Tutorials
Showing results 1 to 25 of 31
Search took 0.40 seconds.
Search: Posts Made By: masfenix
Forum: TalkPHP Developer Team 02-20-2009, 04:08 AM
Replies: 4
Views: 1,033
Posted By masfenix
well i am not very active, but if you want I can...

well i am not very active, but if you want I can "lead" this project. I've already seen the code in c# and i can tell the php guys where to improve and what to add, etc etc.. I dont want to take on...
Forum: TalkPHP Developer Team 02-20-2009, 03:42 AM
Replies: 4
Views: 1,033
Posted By masfenix
scratch this project.

I am not sure how far you guys have gone with this project. But hear me out...

I dont know if you guys know about www.stackoverflow.com a website for asking questions on programming. Its a high...
Forum: The Lounge 01-13-2009, 05:49 PM
Replies: 12
Views: 972
Posted By masfenix
What is the script called? and did you buy the...

What is the script called? and did you buy the script? do you have proof of purchase and verfied email from staff who made the script?

imo, no one is gonna help you steal stuff. If you really need...
Forum: The Lounge 01-09-2009, 08:42 PM
Replies: 4
Views: 786
Posted By masfenix
You should look into some open source programs....

You should look into some open source programs. If you set your mind that your gonna develop a patch then you have to understand their code. Then you'll have knowledge of explaining your own code but...
Forum: TalkPHP Developer Team 12-31-2008, 09:35 PM
Replies: 82
Views: 3,525
Posted By masfenix
What I mean is that you are using exceptions to...

What I mean is that you are using exceptions to control the flow of your class which shouldnt be the case. You should only use exceptions when you want to throw an major error.

Infact you are...
Forum: TalkPHP Developer Team 12-31-2008, 04:44 AM
Replies: 82
Views: 3,525
Posted By masfenix
A lot of programmers are not fans of using...

A lot of programmers are not fans of using exceptions to control the flow of the program. Most of your functions are using exceptions to exit out which is generally bad practice. Throw an exception...
Forum: General 12-23-2008, 06:58 PM
Replies: 25
Views: 1,772
Posted By masfenix
Try working with java or c#.net. You'll be forced...

Try working with java or c#.net. You'll be forced to use OOP.
Forum: TalkPHP Developer Team 12-19-2008, 02:26 AM
Replies: 293
Views: 9,806
Posted By masfenix
I understand that our project is really small,...

I understand that our project is really small, and yes I understand we should've setup coding guidelines but I didnt. I am just giving you an example of what I did with chance and it worked out....
Forum: TalkPHP Developer Team 12-19-2008, 01:28 AM
Replies: 293
Views: 9,806
Posted By masfenix
I just read around 300 posts, only to find out...

I just read around 300 posts, only to find out NOTHING has been done..

I started up a open source software in c# a month or two ago. We are on v1.0.7. On the team is me, one other person who knows...
Forum: General 12-18-2008, 07:07 PM
Replies: 20
Views: 1,054
Posted By masfenix
I primarily code in .net so I know the difference...

I primarily code in .net so I know the difference however I was just stating a point.

I know that php is interpreted, but the way I've gotten accustomed to it that you can write programs in web...
Forum: General 12-18-2008, 06:01 PM
Replies: 20
Views: 1,054
Posted By masfenix
I somewhat agree with village idiot. I consider...

I somewhat agree with village idiot. I consider PHP to be a scripting languages (a powerfull one at that) and you could create programs out of it. It just means what your definition for a program is....
Forum: General 12-16-2008, 03:53 AM
Replies: 10
Views: 621
Posted By masfenix
Tanax I dont get that example, why would he have...

Tanax I dont get that example, why would he have to do it manually? It could all be done automatically with minimal performance loss.

I can argue against that because now you have a numerical id,...
Forum: General 12-15-2008, 06:40 PM
Replies: 10
Views: 621
Posted By masfenix
Its redundant espeically in this case.. I agree...

Its redundant espeically in this case.. I agree with you, a id column is needed but only when its required.

And you can figure out if you need an ID column by normalization.

I just want to point...
Forum: General 12-15-2008, 05:25 PM
Replies: 10
Views: 621
Posted By masfenix
Well your emailid can be your email field and a...

Well your emailid can be your email field and a primary key.
Forum: General 12-14-2008, 03:11 AM
Replies: 10
Views: 621
Posted By masfenix
YOu have a database called e_lists emailid,...

YOu have a database called e_lists

emailid, joindate, active can be your three attributes.

Then you hae a textbox + button in your php page. When people "signup" to your mailing list, you'll get...
Forum: General 12-12-2008, 01:28 AM
Replies: 9
Views: 1,488
Posted By masfenix
That may be true kalle, but to other users who...

That may be true kalle, but to other users who are used to doing to it with a prefix/suffix, it would just be confusing to them.

Guess you cant satisfy them all.
Forum: General 12-09-2008, 11:59 PM
Replies: 10
Views: 825
Posted By masfenix
I understand that, in PHP that means a comment....

I understand that, in PHP that means a comment. You use it to document your code.


//declare variables
$name = "fenix";
$num1 = 2;
$num2 = 2;

//print the name out
echo $name;
Forum: General 12-09-2008, 11:37 PM
Replies: 10
Views: 825
Posted By masfenix
I dont think its much of a "plugin" but just the...

I dont think its much of a "plugin" but just the interpreter ignoring the statements.

I think the OP wants his code to run but not give an error. If he didnt want the statement there he simply...
Forum: General 12-09-2008, 09:14 PM
Replies: 9
Views: 1,488
Posted By masfenix
Most of my private variables start with just...

Most of my private variables start with just underscore. And then all of my properties contain the proper case for that variable.



private string _name;

public string Name{ get { return _name; }...
Forum: The Lounge 12-08-2008, 03:57 AM
Replies: 5
Views: 1,647
Posted By masfenix
You have the easy option and an advanced option....

You have the easy option and an advanced option. Your easy option is that you already have a variable "forum_name" that has your forum name, so why not pass this on to your new thread page.

People...
Forum: The Lounge 11-13-2008, 09:49 PM
Replies: 3
Views: 643
Posted By masfenix
program has been updated to 1.0.4. thanks...

program has been updated to 1.0.4. thanks everyone who downloaded. remember you can create issues/bugs/feature request by clicking the 'issues' tab in google code.

thanks.
Forum: General 11-13-2008, 03:20 AM
Replies: 4
Views: 899
Posted By masfenix
Right Click on it...

Right Click on it...
Forum: The Lounge 11-08-2008, 03:51 AM
Replies: 3
Views: 643
Posted By masfenix
Sorry about double post, but updated to 1.0.3....

Sorry about double post, but updated to 1.0.3. Please view the revision 37+ for changelog.

I would highly recommend updating. Theres no auto update yet, however if you run the installer it will...
Forum: The Lounge 11-08-2008, 01:59 AM
Replies: 3
Views: 643
Posted By masfenix
need beta testers

Not sure where to put this really. I've created (yet another) screenshot application.

I am looking for people to beta test my new program.

What is it: Its a screenshot application. Yes there are...
Forum: Absolute Beginners 10-25-2008, 05:35 AM
Replies: 7
Views: 855
Posted By masfenix
Simply put: no. Time is always changing. They...

Simply put: no. Time is always changing. They only way that could work is that you CONSTANTLY update the last_active column (almost every second or half a second) and even then it will be really...
Showing results 1 to 25 of 31

 

All times are GMT. The time now is 06:09 PM.

 
     

Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0
Inactive Reminders By Icora Web Design