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 44
Search took 0.00 seconds.
Search: Posts Made By: ReSpawN
Forum: Member Introductions 05-27-2009, 09:47 PM
Replies: 7
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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

 

All times are GMT. The time now is 07:43 AM.

 
     

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