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 20 of 20
Search took 0.02 seconds.
Search: Posts Made By: iisbum
Forum: General 03-14-2010, 01:36 PM
Replies: 2
Views: 1,442
Posted By iisbum
If you have your rewrite rules working, the other...

If you have your rewrite rules working, the other option would be to use Javascript in the form, so that when it is submitted, it redirects the user the /<fieldvalue> url instead of doing the regular...
Forum: Show Off 10-13-2009, 03:37 PM
Replies: 2
Views: 1,972
Posted By iisbum
10 Websites Built with Kohana

I recently wrote a post on Most Inspired (http://www.mostinspired.com), to showcase websites that are built with the Kohana (http://www.kohanaphp.com) PHP framework, hope its ok to post...
Forum: Advanced PHP Programming 02-08-2008, 03:14 PM
Replies: 5
Views: 934
Posted By iisbum
When I last did this, we had a manual cut over to...

When I last did this, we had a manual cut over to the slave, which usually only happened when something really bad happened. The master was taken out of service entirely until we could diagnose what...
Forum: Advanced PHP Programming 02-07-2008, 02:20 AM
Replies: 5
Views: 934
Posted By iisbum
Yo can do replication in MySQL 5 so no need to...

Yo can do replication in MySQL 5 so no need to spend a fortune on Oracle. It might be a little easier to manage in Oracle though!

Dependant on the application needs, you can setup the slave to read...
Forum: Show Off 01-22-2008, 05:54 PM
Replies: 3
Views: 1,099
Posted By iisbum
@orc: Great, glad to see the site working...

@orc: Great, glad to see the site working ;-)

@Harris: Thanks! The network keeps growing, and growing and growing.

Mubs
Forum: Show Off 01-22-2008, 02:32 AM
Replies: 3
Views: 1,099
Posted By iisbum
Most-Listed

I've just released my latest little project:

Most-Listed -- The Internet is For Sale (http://www.most-listed.com)

The site is PHP based using the Fraction Framework (something that I'm developing...
Forum: Advanced PHP Programming 01-14-2008, 06:09 PM
Replies: 5
Views: 777
Posted By iisbum
I think what you want to do is something like...

I think what you want to do is something like this (one of the rewrite rules from sites):



The relevant bit is the %{QUERY_STRING} bit which will pass any variables on the URL into your...
Forum: General 01-09-2008, 09:56 PM
Replies: 61
Views: 2,638
Posted By iisbum
When I'm on the Mac: TextMate...

When I'm on the Mac: TextMate (http://macromates.com/). On the PC: E (http://www.e-texteditor.com/).

Mubs
Forum: XHTML, HTML, CSS 12-17-2007, 06:38 PM
Replies: 15
Views: 1,644
Posted By iisbum
Someone submitted it to Digg, would appreciate a...

Someone submitted it to Digg, would appreciate a vote:
http://digg.com/design/Design_By_Grid_2

Thanks,
Mubs
Forum: General 12-08-2007, 02:21 PM
Replies: 10
Views: 1,767
Posted By iisbum
It wasn't a mistake if you read my explanation it...

It wasn't a mistake if you read my explanation it was exactly what I intended.

If the user only looks at 1 page in that visit, you want the cookie to expire immediately, so that when they return to...
Forum: General 12-08-2007, 07:02 AM
Replies: 10
Views: 1,767
Posted By iisbum
if(!isset($_COOKIE['last_displayed'])) { ...

if(!isset($_COOKIE['last_displayed'])) {
setcookie('last_displayed', "1", 0, '/');
} else {
if ($_COOKIE['last_displayed'] == "1") {
setcookie('last_displayed', date("Y-m-d h:i:s"), time() + (24...
Forum: General 12-05-2007, 01:38 AM
Replies: 6
Views: 1,687
Posted By iisbum
It's not free and Windows only, but UltraEdit is...

It's not free and Windows only, but UltraEdit is also very good at opening VERY large files.

http://www.ultraedit.com/

Mubs
Forum: XHTML, HTML, CSS 12-04-2007, 04:53 AM
Replies: 15
Views: 1,644
Posted By iisbum
Yep, DBG is my site, designed, developed and am...

Yep, DBG is my site, designed, developed and am maintaining it.

When I started using grids in my designs I realized what a powerful tool they were, but was surprised to see there wasn't really a...
Forum: MySQL & Databases 12-01-2007, 05:29 PM
Replies: 29
Views: 1,973
Posted By iisbum
Another vote for HeidiSQL, it used to be called...

Another vote for HeidiSQL, it used to be called MySQLFront I believe.

Mubs
Forum: XHTML, HTML, CSS 12-01-2007, 02:51 AM
Replies: 15
Views: 1,644
Posted By iisbum
Design by Grid is great, and I'm not just saying...

Design by Grid is great, and I'm not just saying that coz I built it :-)

One of the best tutorials on the whole Grid approach is by Mark...
Forum: General 12-01-2007, 02:44 AM
Replies: 18
Views: 847
Posted By iisbum
Been coding for fun since about 1984 (small...

Been coding for fun since about 1984 (small utilties and games for Commodore 64, and Atari ST), professionally since 1995.

Started off doing C, and Java, mostly doing PHP and Rails now.
Forum: Tips & Tricks 11-27-2007, 06:59 PM
Replies: 11
Views: 1,278
Posted By iisbum
Agreed, in my case I didn't need to re-sort just...

Agreed, in my case I didn't need to re-sort just randomize and display so no problems there.

If its a short, simple array, it's easy to just make a copy of the array for randomizing and leave the...
Forum: Tips & Tricks 11-27-2007, 02:32 PM
Replies: 11
Views: 1,278
Posted By iisbum
My favorite way of doing this is to use the...

My favorite way of doing this is to use the shuffle function, to use the example from above:


$banner = array();
$banner[]=array("image.gif","http://domain.com/"); ...
Forum: General 11-23-2007, 05:37 AM
Replies: 10
Views: 1,767
Posted By iisbum
Couldn't you just set the cookie to expire in 24...

Couldn't you just set the cookie to expire in 24 hours and if it exists, don't show the ad?


if(!isset($_COOKIE['last_displayed'])) {
setcookie('last_displayed', date("Y-m-d h:i:s"), time() + (24...
Forum: General 11-18-2007, 04:40 AM
Replies: 4
Views: 636
Posted By iisbum
You're using $sd_Burning to index the $_POST...

You're using $sd_Burning to index the $_POST array, so it depends on the value stored in that variable.

You probably mean't to use:
$_POST['sd_Burning']

Mubs
Showing results 1 to 20 of 20

 

All times are GMT. The time now is 06:48 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