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
Showing results 1 to 19 of 19
Search took
0.00
seconds.
Search:
Posts Made By:
DragonBe
Forum:
The Lounge
01-29-2008, 08:33 AM
Replies:
6
elePHPant
Views:
2,580
Posted By
DragonBe
I was lucky to order a few. Elephpant at Belgian...
I was lucky to order a few.
Elephpant at Belgian railways on Flickr - Photo Sharing! (http://www.flickr.com/photos/dragonbe/2208419139/)
Elephpants in Belgium on Flickr - Photo Sharing!...
Forum:
General
12-01-2007, 01:31 PM
Replies:
18
Last Inserted ID?
Views:
1,362
Posted By
DragonBe
Hey Winsrev, A simple example might show you...
Hey Winsrev,
A simple example might show you where you might have done things wrong.
if ($conn = mysql_connect('hostname:port', 'username', 'password')) {
if ($db = mysql_select_db('database',...
Forum:
News and Announcements
11-29-2007, 03:55 PM
Replies:
8
User Titles Update
Views:
1,515
Posted By
DragonBe
It's not the title that matters, but the quality...
It's not the title that matters, but the quality of the post...
But I don't mind getting recognition for my quality postings ;)
Forum:
General
11-27-2007, 01:50 PM
Replies:
26
Securing your MySQL Queries with Sprintf
Views:
32,351
Posted By
DragonBe
Hi Wildhoney, I'm truly impressed about this...
Hi Wildhoney,
I'm truly impressed about this tutorial! Now I don't feel lonely anymore being a "paranoid" developer. I've been using (s)printf and escaping strings since forever along with a few...
Forum:
News and Announcements
11-27-2007, 01:25 AM
Replies:
47
TalkPHP Makeover
Views:
5,125
Posted By
DragonBe
Hey Wildhoney, Why don't you join up on...
Hey Wildhoney,
Why don't you join up on LinkedIn, Facebook and Plaxo and we make it a professional group for Php Developers (on linkedin I already started one, pointing to a yahoo group).
I also...
Forum:
MySQL & Databases
11-26-2007, 09:04 AM
Replies:
11
MySQL: Selecting a username?
Views:
1,254
Posted By
DragonBe
Hi there, If you know your way around MySQL, you...
Hi there,
If you know your way around MySQL, you can create an index on a part of a column so you can actually index the first three or four characters (do mind yourself you cannot make this an...
Forum:
The Lounge
11-23-2007, 05:40 PM
Replies:
3
PHP Clubs
Views:
938
Posted By
DragonBe
Hi Sam, I'm actually thinking about (re)starting...
Hi Sam,
I'm actually thinking about (re)starting one in Belgium, because the one we had here is without proper management. So if you ever come to the mainland, we'll treat you on some Belgian...
Forum:
Member Introductions
11-23-2007, 05:37 PM
Replies:
3
Bibabeloula ... Yeah !
Views:
614
Posted By
DragonBe
Hey Nicolas, It looks to me your English is...
Hey Nicolas,
It looks to me your English is rea'lly good, so don't worry. You'll be fine here.
Are you also a member of afup (www.afup.org) ? They had a conference 2 days ago in Paris. My...
Forum:
General
11-20-2007, 01:03 AM
Replies:
11
So whats so good about __construct()?
Views:
661
Posted By
DragonBe
The reason the class-name-function was replaced...
The reason the class-name-function was replaced by __construct() is to be more a genuine OOP language. For backwards compatibility they left the old-style in PHP 5.
I believe the class-name-function...
Forum:
General
11-20-2007, 12:46 AM
Replies:
3
Single way password storage
Views:
715
Posted By
DragonBe
Single way password storage
I've had many discussions about the way user passwords should be kept inside the database. And I want to see how you think about this topic.
Many people use same username and password combo on all...
Forum:
General
11-20-2007, 12:33 AM
Replies:
3
PHP Encoders
Views:
703
Posted By
DragonBe
I've never needed to encrypt my source code,...
I've never needed to encrypt my source code, since most of the time I work for customers whom pay for my development and source code. The other few occasions I didn't bother to encode it, since these...
Forum:
Script Giveaway
11-20-2007, 12:21 AM
Replies:
20
Contact Form Script
Views:
3,436
Posted By
DragonBe
Sorry to be the paranoid here again, but you...
Sorry to be the paranoid here again, but you cannot trust client-side scripting (like Javascript). You said it, no validation occurs when someone disables javascript or uses curl to post your...
Forum:
Member Introductions
11-19-2007, 12:47 PM
Replies:
4
Hello
Views:
589
Posted By
DragonBe
<?php class bie { public function...
<?php
class bie {
public function __construct($name)
{
return sprintf(
"howdie %s and welcome to this php community.",
htmlentities($name)
);
}
}
Forum:
Script Giveaway
11-19-2007, 11:11 AM
Replies:
20
Contact Form Script
Views:
3,436
Posted By
DragonBe
Hi Matt, This is a good example form submission...
Hi Matt,
This is a good example form submission script, but I would like to suggest you use both HTML and TEXT e-mails, since I know that many companies disable receiving html-rich mails. By...
Forum:
General
11-14-2007, 10:53 AM
Replies:
2
Zend Coding Guidelines
Views:
782
Posted By
DragonBe
Hmm, apparently I code using the Zend Framework...
Hmm, apparently I code using the Zend Framework standards which are comparable to the PEAR standards. Oh no, I'm standard !
Forum:
General
11-14-2007, 10:50 AM
Replies:
7
Question regarding array_push
Views:
2,236
Posted By
DragonBe
best-practice: $array[] = $item or array_push($array, $item)?
Since we talk about array_push here, I might as well ask the question here. What's better or faster ?
foreach ($complex_array as $key => $item) {
$array[] = $item;
}
or
foreach ($complex_array...
Forum:
Feedback
11-14-2007, 09:04 AM
Replies:
12
Framework Section
Views:
1,167
Posted By
DragonBe
Well, I do believe it's good to have a framework...
Well, I do believe it's good to have a framework section, because most of the time (junior) developers face problems using certain frameworks that already have been explored by other (more...
Forum:
Member Introductions
11-13-2007, 04:41 PM
Replies:
8
BelgianPhpGreeter.php
Views:
633
Posted By
DragonBe
did I found a bug in the form script ? My title...
did I found a bug in the form script ? My title is a bit escaped.
Forum:
Member Introductions
11-13-2007, 04:27 PM
Replies:
8
BelgianPhpGreeter.php
Views:
633
Posted By
DragonBe
BelgianPhpGreeter.php
/**
* Author: Michelangelo
* Profession: Enterprise PHP Developer
* Exp: 10+ years (6 years PHP)
* Certs: ZCE 4 & 5
* Contributor on Zend Framework
*/
class BelgianPhpGreet
{
public function...
Showing results 1 to 19 of 19
All times are GMT. The time now is
05:57 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