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 44
Search took
0.00
seconds.
Search:
Posts Made By:
ReSpawN
Forum:
Member Introductions
05-27-2009, 09:47 PM
Replies:
7
<?= "hello php talk" ?>
Views:
602
Posted By
ReSpawN
Long time no see Orc! I assume you've still got...
Long time no see Orc! I assume you've still got that dungeon of yours filled with Ruby and ASP trolls? :-P
Welcome to talkPHP iflashlord! Great to see the forum is getting bigger and more active....
Forum:
General
10-13-2008, 08:17 PM
Replies:
6
Stuck with timestamps
Views:
600
Posted By
ReSpawN
First off, you should formulate your variables...
First off, you should formulate your variables and so forth.
The most wise thing to do, is to, when people register, post a timestamp with just the time() function or list( $microTime, $timeStamp )...
Forum:
Advanced PHP Programming
10-09-2008, 07:00 AM
Replies:
6
Image filetype conversion
Views:
726
Posted By
ReSpawN
As far as I know, JPEG and TIFF coding don't come...
As far as I know, JPEG and TIFF coding don't come close to looking like eachother so I think that's a no-go. The smartest thing for you to do, is just simply sort them by type or let the customer...
Forum:
TalkPHP Developer Team
10-08-2008, 10:31 AM
Replies:
138
Planning Area - ideas,code,etc.. in here
Views:
5,115
Posted By
ReSpawN
To get back on track here, I volunteerd a couple...
To get back on track here, I volunteerd a couple of months ago but got caught up with school and adittional work, so not really anything came out of that.
I would like to ask if there are still some...
Forum:
TalkPHP Developer Team
05-28-2008, 05:32 PM
Replies:
293
TalkPHP Project
Views:
9,816
Posted By
ReSpawN
Indeed. Count us in. ^^
Indeed. Count us in. ^^
Forum:
Javascript, AJAX, E4X
03-10-2008, 08:36 PM
Replies:
8
need a free rich text editor
Views:
1,923
Posted By
ReSpawN
WYSISYG editor perhaps. I also love the TinyMCE...
WYSISYG editor perhaps. I also love the TinyMCE editor but that's a lot more 'richer' than you're used to and want I guess. Joomla also uses XStandard and it's quite good to be honest.
Forum:
Advanced PHP Programming
03-10-2008, 03:25 PM
Replies:
4
Designing a tagging system
Views:
1,096
Posted By
ReSpawN
The best way, like DeMo suggested, is to make it...
The best way, like DeMo suggested, is to make it comma seperated , or perhaps with a more common way. Although I would suggest that, for the users sake, a comma and a space like in meta tags is the...
Forum:
Advanced PHP Programming
03-09-2008, 09:23 PM
Replies:
4
Designing a tagging system
Views:
1,096
Posted By
ReSpawN
At first I'm leaning towards idea #1, but on...
At first I'm leaning towards idea #1, but on second read, I'm gonna go with idea #3. The most logical one to me that is. If you search, you search on articles, but through the usage of tags. You can...
Forum:
General
03-04-2008, 08:58 PM
Replies:
7
Saving Strings to not be edited
Views:
605
Posted By
ReSpawN
Indeed Xenon, or define (_TALK_PHP,...
Indeed Xenon, or
define (_TALK_PHP, 'TalkPHP');
if ( defined ( _TALK_PHP ) ) { echo 'Defined'; }Make a function for defining those things I guess. There is a better way tho.
$lang =...
Forum:
Absolute Beginners
03-03-2008, 09:54 PM
Replies:
11
Best Way To Delete A Cookie?
Views:
9,298
Posted By
ReSpawN
That should work fine. Since you're not setting...
That should work fine. Since you're not setting any content on the cookie and the timer in negative, it's automatically a false cookie. Plus, almost every browser including Netscape and Internet...
Forum:
XHTML, HTML, CSS
03-03-2008, 01:48 PM
Replies:
6
Scrollbars in CSS
Views:
1,783
Posted By
ReSpawN
I think Wildhoney just answered that...
I think Wildhoney just answered that question/problem. :)
As he said, you can change the variable in the "about:config" from firefox and make it changeable. You can also use a AJAX system for it. ;-)
Forum:
Advanced PHP Programming
03-02-2008, 02:32 PM
Replies:
10
Anatomy of this bug
Views:
847
Posted By
ReSpawN
ini_set('display_errors', 1); error_reporting(...
ini_set('display_errors', 1);
error_reporting( E_ALL ^ E_NOTICE );But since when do you filter out HTML entities (like <i>myString</i>) in an ID? Simply filter it with is_numeric($var); or...
Forum:
Tips & Tricks
03-01-2008, 10:05 PM
Replies:
53
Outputting data without print/echo
Views:
17,530
Posted By
ReSpawN
It might be kinda lame but there is always...
It might be kinda lame but there is always var_dump();.
$myVar = 'TalkPHP';
var_dump($myVar);
Forum:
Absolute Beginners
02-23-2008, 09:02 AM
Replies:
9
String help!
Views:
784
Posted By
ReSpawN
That'll be quite a waste of good resources....
That'll be quite a waste of good resources. Encoding a password which has about 15 letters, would take a lot longer. Than you'll do something like;
<?php
$stringArray = array();
$input =...
Forum:
Advanced PHP Programming
02-19-2008, 07:13 PM
Replies:
54
Sticky:
8 Practical PHP Regular Expressions
Views:
32,621
Posted By
ReSpawN
Andrial, next time use php tags (between []) tags...
Andrial, next time use php tags (between []) tags for your message. It looks fine non the less!
Forum:
Absolute Beginners
02-18-2008, 10:44 AM
Replies:
23
refresh, clear (dont know)????
Views:
1,340
Posted By
ReSpawN
You can create a cookie for that. It's kinda like...
You can create a cookie for that. It's kinda like a shoppingcart if you want to put it that way.
When you leave the order page, you wish to reset the entire order? Use the PHP setcoockie() function...
Forum:
Absolute Beginners
02-18-2008, 08:54 AM
Replies:
10
Wtf? Password Recovery? MD5? Unreversable? !!
Views:
3,570
Posted By
ReSpawN
Seriously, most people (including me sometimes)...
Seriously, most people (including me sometimes) forget that setting a new password is the best option. If you know a person very well, even a secret question wont suffice.
What you do is:
1....
Forum:
Absolute Beginners
02-15-2008, 02:25 PM
Replies:
33
First Login Script
Views:
1,835
Posted By
ReSpawN
SESSIONS are kinda simple if you fully understand...
SESSIONS are kinda simple if you fully understand the workings of an array. SESSIONS (if I am correct, need to brush up as well) are simply superglobals which can be called upon on every page, where...
Forum:
Absolute Beginners
02-15-2008, 10:32 AM
Replies:
33
First Login Script
Views:
1,835
Posted By
ReSpawN
If you have yet to find out why MD5 is not...
If you have yet to find out why MD5 is not working properly, maybe you can increase the security of your login script by reading this topic on...
Forum:
General
02-15-2008, 10:30 AM
Replies:
22
Never ending increment?
Views:
1,108
Posted By
ReSpawN
So the problem is fixed. :-) Simply (in your...
So the problem is fixed. :-) Simply (in your talkPHP controlpanel of course) Unsubscribe - This should work (http://www.talkphp.com/subscription.php?do=removesubscription&return=ucp&t=2245) from this...
Forum:
General
02-15-2008, 10:30 AM
Replies:
22
Never ending increment?
Views:
1,108
Posted By
ReSpawN
So the problem is fixed. :-) Simply (in your...
So the problem is fixed. :-) Simply (in your talkPHP controlpanel of course) Unsubscribe (http://www.talkphp.com/subscription.php?do=removesubscription&return=ucp&t=2250) from this thread and gMail...
Forum:
General
02-14-2008, 10:47 AM
Replies:
22
Never ending increment?
Views:
1,108
Posted By
ReSpawN
Yeah, then you're using the AJAX framework. There...
Yeah, then you're using the AJAX framework. There are a lot of plugins for it if you're into it. Check out mootools.net Orc. :)
Forum:
General
02-14-2008, 09:33 AM
Replies:
22
Never ending increment?
Views:
1,108
Posted By
ReSpawN
$postQuery = mysql_query('SELECT * FROM post...
$postQuery = mysql_query('SELECT * FROM post WHERE id = "'.$_GET['id'].'"');
$postFetch = mysql_fetch_array($postQuery);
$newViews = $postFetch['viewcount'] + 1;
mysql_query('UPDATE post SET...
Forum:
Absolute Beginners
02-11-2008, 07:22 PM
Replies:
8
hi , a project problem !!!!!!!!
Views:
754
Posted By
ReSpawN
<?php // First, check wether CAT has been...
<?php
// First, check wether CAT has been defined.
if ( !empty ( $_GET['cat'] ) ) {
// Second, check if both vars are numeric. If not, it won't work either way.
if ( (...
Forum:
Script Giveaway
02-11-2008, 08:15 AM
Replies:
5
ProxyGuard [Simple]
Views:
1,822
Posted By
ReSpawN
Lovely, going to try it out a.s.a.p.
Lovely, going to try it out a.s.a.p.
Showing results 1 to 25 of 44
Page 1 of 2
1
2
>
All times are GMT. The time now is
07:43 AM
.
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