Home
Forums
Articles
Glossary
Awards
Register
Rules
Members
Search
Today's Posts
Mark Forums Read
Account Login
User Name
Password
Remember Me?
Latest Articles
The basic usage of PHPTAL, a XML/XHTML template library for PHP
by
awuehr
on
11-10-2008
in
Tips & Tricks
Vulnerable methods and the areas they are commonly trusted in.
by
Village Idiot
on
11-04-2008
in
Classes & Objects
Simple way to protect a form from bot
by
codefreek
on
10-23-2008
in
Basic
The Basics On: How Session Stealing Works
by
wiifanatic
on
09-12-2008
in
Security & Permissions
How to keep your forms from double posting data
by
drewbee
on
07-03-2008
in
Tips & Tricks
IRC Channel
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
Wired Flame
ClientExec
Handy PHP
PHP Kitchen
PHP Tutorials
Insane Visions
Associates
TalkPHP
>
Search Forums
»
Search Results
Page 1 of 2
1
2
>
Page 1 of 2
1
2
>
Showing results 1 to 25 of 34
Search took
2.16
seconds.
Search:
Posts Made By:
Enfernikus
Forum:
The Lounge
11-12-2010, 04:42 PM
Replies:
2
Anyone ever feel overwhelmed?
Views:
659
Posted By
Enfernikus
Anyone ever feel overwhelmed?
I don't mean overwhelmed by work but the sheer magnitude of a project. I'm part-owner and Lead Developer of an application that all of a sudden has been picked out for Mass Adoption by some very...
Forum:
Absolute Beginners
09-12-2010, 05:24 PM
Replies:
3
Flatfile-edit in place CMS
Views:
1,620
Posted By
Enfernikus
Nice concept, I've seen it starting to crop up...
Nice concept, I've seen it starting to crop up and I sort of like it for smaller less-content heavy site.
I'll take it as a mistake but the first and last libraries you've listed are both jQuery...
Forum:
TalkPHP Developer Team
08-06-2010, 12:51 PM
Replies:
4
php href doubt...
Views:
5,377
Posted By
Enfernikus
The way WordPress does things internally is to...
The way WordPress does things internally is to take the entire submitted url, deduct the host name and parse the rest as part of a WordPress Query; this might be a bit more specific than what you'd...
Forum:
Advanced PHP Programming
01-10-2010, 01:09 AM
Replies:
31
Paginated Flat File DB
Views:
2,142
Posted By
Enfernikus
Variable within single quotes will not be parsed,...
Variable within single quotes will not be parsed, only double quotes.
Forum:
Absolute Beginners
10-31-2009, 01:11 AM
Replies:
13
Importing comma-delimited csv file, containing commas
Views:
5,210
Posted By
Enfernikus
A CSV file is technically a comma delimited text...
A CSV file is technically a comma delimited text file but a simple split on commas does not adhere to the full CSV standard.
Forum:
General
10-22-2009, 10:43 PM
Replies:
5
[ASK] get parent url in iframe
Views:
2,156
Posted By
Enfernikus
You can use EasyXDM
You can use EasyXDM
Forum:
Absolute Beginners
10-16-2009, 11:19 PM
Replies:
3
Do proliferation of PHP tags affect speed?
Views:
784
Posted By
Enfernikus
If it does slow anything down the difference...
If it does slow anything down the difference would be negligible at best and it's not often these micro optimizations that make a different but rather how to the application is designed that really...
Forum:
Absolute Beginners
09-15-2009, 09:12 PM
Replies:
12
Any thoughts on PHP_ED (IDE) from Nusphere?
Views:
1,065
Posted By
Enfernikus
PHP Designer is about to come out with a new...
PHP Designer is about to come out with a new version; It's the best IDE ever. Period.
( For PHP Anyways; Visual Studios is far better relatively speaking )
Forum:
Show Off
09-13-2009, 07:20 PM
Replies:
13
My new open source cms
Views:
1,023
Posted By
Enfernikus
http://www.megaupload.com/?d=6GGU7QOZ
http://www.megaupload.com/?d=6GGU7QOZ
Forum:
General
08-28-2009, 07:47 PM
Replies:
7
Template How ? ?
Views:
666
Posted By
Enfernikus
Business logic and view logic should be strictly...
Business logic and view logic should be strictly separated to facilitate easy ( relatively speaking ) future development and expansion.
Forum:
Javascript, AJAX, E4X
07-22-2009, 01:43 PM
Replies:
5
Ajax Theme for CMS
Views:
1,057
Posted By
Enfernikus
An all ajax theme is EXTREMELY bad for SEO.
An all ajax theme is EXTREMELY bad for SEO.
Forum:
Advanced PHP Programming
07-19-2009, 10:18 PM
Replies:
4
The correct way to use multiple classes?
Views:
1,841
Posted By
Enfernikus
Nay, you're looking now into design patterns, for...
Nay, you're looking now into design patterns, for this sort of occasion perhaps a Registry pattern would suffice
Note: Technically speaking you COULD but it's just bad practice.
<?php
final...
Forum:
General
07-12-2009, 02:20 AM
Replies:
5
Should I use pre-made CRM script or custom make my own?
Views:
1,039
Posted By
Enfernikus
SugarCRM an exe? You must've gotten the wrong...
SugarCRM an exe? You must've gotten the wrong copy, it's a script written in php freely available at http://www.sugarcrm.com/crm/download/sugar-suite.html
Alternatively you could go with...
Forum:
The Lounge
05-28-2009, 01:19 AM
Replies:
6
Perfect example of Regex gone..insane?
Views:
1,464
Posted By
Enfernikus
Perfect example of Regex gone..insane?
http://www.ex-parrot.com/~pdw/Mail-RFC822-Address.html
I admit it'd have it's uses but damn..
Forum:
Absolute Beginners
05-09-2009, 06:42 PM
Replies:
16
base classes.....
Views:
1,075
Posted By
Enfernikus
Yes, indeed, you could use it throught the object...
Yes, indeed, you could use it throught the object now
Forum:
Absolute Beginners
05-09-2009, 06:26 PM
Replies:
16
base classes.....
Views:
1,075
Posted By
Enfernikus
Do not make them Children of the validation class...
Do not make them Children of the validation class pass the validation object to them or have the Loader class class it inside. Example.
<?php
class Member
{
private $validation;
Forum:
Show Off
04-20-2009, 07:35 PM
Replies:
97
Dingo Framework - ALPHA Testing Open!
Views:
3,944
Posted By
Enfernikus
Dynamic routing is actually not as complex as one...
Dynamic routing is actually not as complex as one might think if one only uses straight regex and not wild cards.
Let us say we use a URL object with stores all data after index.php so for...
Forum:
Absolute Beginners
04-08-2009, 02:17 AM
Replies:
33
What is this called?
Views:
1,301
Posted By
Enfernikus
they use AJAX to load a new stylesheet most likely
they use AJAX to load a new stylesheet most likely
Forum:
Advanced PHP Programming
04-06-2009, 11:01 PM
Replies:
4
__call
Views:
733
Posted By
Enfernikus
return...
return call_user_func_array(array($this->DB_Helper,$function),$params);
Forum:
General
04-05-2009, 04:26 PM
Replies:
8
Best language for large web applications?
Views:
2,910
Posted By
Enfernikus
PHP & ASP.NET would be your best choices in my...
PHP & ASP.NET would be your best choices in my opinion.
Forum:
Advanced PHP Programming
03-31-2009, 12:21 AM
Replies:
23
Output to PDF
Views:
1,653
Posted By
Enfernikus
http://www.digitaljunkies.ca/dompdf/
http://www.digitaljunkies.ca/dompdf/
Forum:
Absolute Beginners
11-27-2008, 11:59 PM
Replies:
27
OOP - User System
Views:
2,499
Posted By
Enfernikus
var is depreciated in PHP5, use...
var is depreciated in PHP5, use public/private/protected and if your testing on a host they oft won't let tables be created via scripts.
Forum:
Absolute Beginners
11-18-2008, 11:06 PM
Replies:
9
anyone have a function for these
Views:
939
Posted By
Enfernikus
$fetchType = ($assoc == true) ? MYSQL_ASSOC :...
$fetchType = ($assoc == true) ? MYSQL_ASSOC : MYSQL_NUM;
Forum:
Absolute Beginners
11-16-2008, 08:28 PM
Replies:
9
anyone have a function for these
Views:
939
Posted By
Enfernikus
The MYSQL_ASSOC constant in PHP is really just an...
The MYSQL_ASSOC constant in PHP is really just an integer that equates to one, a good chunk of that code you've written there could be greatly reduced with the use of a ternary operator. Unless I'm...
Forum:
Script Giveaway
11-16-2008, 04:01 PM
Replies:
8
Simple Image manipulation class [ GD ]
Views:
1,890
Posted By
Enfernikus
Simple Image manipulation class [ GD ]
I find that I have to work with image a whole lot on my projects ( thumbnail creation, AJAX editing, those type of things ) so I thought other developers might have need for this to. Initially it...
Showing results 1 to 25 of 34
Page 1 of 2
1
2
>
All times are GMT. The time now is
10:18 PM
.
Contact Us
-
TalkPHP - PHP Community
-
Archive
-
Top
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