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 21 of 21
Search took 0.05 seconds.
Search: Posts Made By: hostfreak
Forum: XHTML, HTML, CSS 01-07-2008, 02:56 AM
Replies: 7
Views: 1,192
Posted By hostfreak
Your going to want to look into the CSS Float...

Your going to want to look into the CSS Float property: CSS Float Property (http://www.w3schools.com/css/pr_class_float.asp)
Forum: General 12-18-2007, 03:31 PM
Replies: 11
Views: 762
Posted By hostfreak
I think I have found the site you are looking...

I think I have found the site you are looking for: http://sketch-media.co.uk/index.php?page=PHP_OOP . It is the personal site of a member here, sketchMedia. Found it while I was browsing the TalkPHP...
Forum: General 12-18-2007, 01:12 PM
Replies: 11
Views: 762
Posted By hostfreak
Not sure if this is the site, but the colors...

Not sure if this is the site, but the colors match your description: http://www.sampsonresume.com/
Forum: Absolute Beginners 12-17-2007, 06:30 PM
Replies: 12
Views: 841
Posted By hostfreak
I understand why you want to do that. At first I...

I understand why you want to do that. At first I thought you meant a completely different array for each one, my mistake. What I posted is known as a multidimensional array.
Forum: Absolute Beginners 12-17-2007, 06:13 PM
Replies: 12
Views: 841
Posted By hostfreak
Are you saying you want an individual array for...

Are you saying you want an individual array for each one? If so, I'm not really sure why?... Something like the following should be efficient enough:


<?php

$arr[] = array('thread_id' => '43',...
Forum: Absolute Beginners 12-17-2007, 05:43 PM
Replies: 12
Views: 841
Posted By hostfreak
Tanax, that is incorrect. From the php...

Tanax, that is incorrect. From the php manual:


<?php
$arr = array(5 => 1, 12 => 2);

$arr[] = 56; // This is the same as $arr[13] = 56;
// at this point of the script

$arr["x"]...
Forum: General 12-14-2007, 02:40 PM
Replies: 2
Views: 680
Posted By hostfreak
Brad, Makes perfect sense. Didn't think of...

Brad,

Makes perfect sense. Didn't think of saving page between browsing of tabs. Of course, I will also need to add a manual submit option on each section; being as not all tab sections will be...
Forum: General 12-14-2007, 03:59 AM
Replies: 2
Views: 680
Posted By hostfreak
Design (not graphical) question

I want to do something similar to my attached image. See the tabs? Kind of like a "step(s) process". I know there are several ways to go about it:
1. Use simple javascript to do something like a...
Forum: Javascript, AJAX, E4X 11-21-2007, 06:37 PM
Replies: 6
Views: 2,416
Posted By hostfreak
Sorry to bump this thread, however I am still in...

Sorry to bump this thread, however I am still in search of help. Thanks guys.
Forum: General 11-17-2007, 07:00 PM
Replies: 39
Views: 1,871
Posted By hostfreak
Result: 19 of 20 95% You can be proud of...

Result:
19 of 20

95%

You can be proud of yourself!

Time Spent
2:39
Forum: The Lounge 11-17-2007, 03:45 AM
Replies: 16
Views: 1,044
Posted By hostfreak
The only differences I usually notice between...

The only differences I usually notice between private trackers and not so much ones are the release times and quality. Which IMO makes all the difference.
Forum: The Lounge 11-16-2007, 10:32 PM
Replies: 16
Views: 1,044
Posted By hostfreak
Demonoid was nice because of it's large user...

Demonoid was nice because of it's large user base, however I prefer to stick to the more private trackers (yes demonoid was private, but really easy to get in to). More private trackers have overall...
Forum: Javascript, AJAX, E4X 11-06-2007, 11:09 PM
Replies: 6
Views: 6,056
Posted By hostfreak
Great read. I'm sure it will help many of new...

Great read. I'm sure it will help many of new comers to JS; wouldn't even hurt veterans to read. Looking forward to Karls addition.

Side note, I love the quality of articles posted here.
Forum: Javascript, AJAX, E4X 11-06-2007, 12:19 AM
Replies: 6
Views: 2,416
Posted By hostfreak
Yeah, I was sure it is pretty complicated. Beyond...

Yeah, I was sure it is pretty complicated. Beyond my skills javascript wise at this moment. Just out of curiosity, how much do you think a freelancer would charge to complete a task like this?
Forum: Javascript, AJAX, E4X 11-04-2007, 07:58 PM
Replies: 6
Views: 2,416
Posted By hostfreak
Hey Karl, Thanks for the reply. To be honest,...

Hey Karl,
Thanks for the reply. To be honest, I am not sure how to implement your provided code. I have a couple more aspects to this than I forgot to mention; which at the time I didn't think...
Forum: Javascript, AJAX, E4X 11-03-2007, 05:30 PM
Replies: 6
Views: 2,416
Posted By hostfreak
Multiple rows - dynamic

I've been trying to figure this out for awhile to no avail. What I want to do is have a main row of inputs and a sub row of inputs that can be dynamically generated. I want to be able to make each...
Forum: Script Giveaway 10-31-2007, 08:23 PM
Replies: 41
Views: 26,306
Posted By hostfreak
Haven't had a chance to really look over much of...

Haven't had a chance to really look over much of it, but it might be beneficial to include an sql export to setup the table/field(s). I am sure you will get a lot of beginners complaining that it...
Forum: MySQL & Databases 10-31-2007, 12:24 AM
Replies: 7
Views: 1,145
Posted By hostfreak
In this case it is probably easier to just have...

In this case it is probably easier to just have an extra field in each table. Then just store a boolean value in the field; 0 being not approved (false), 1 being approved (true).

Otherwise, say for...
Forum: Show Off 10-29-2007, 11:32 PM
Replies: 6
Views: 1,315
Posted By hostfreak
I would recommend using a simple switch()...

I would recommend using a simple switch() (http://www.php.net/switch) statement:

<?php

switch ($_SERVER['QUERY_STRING'])
{
case 'right':
//display page
break;
Forum: Member Introductions 10-29-2007, 12:16 AM
Replies: 3
Views: 645
Posted By hostfreak
Thanks for the welcome guys. I'll defiantly share...

Thanks for the welcome guys. I'll defiantly share what I know; although, it seems there isn't much most members here don't know already. It's nice to be a member of an advanced community.
Forum: Member Introductions 10-28-2007, 12:57 PM
Replies: 3
Views: 645
Posted By hostfreak
Brief Intro

Hey guys,
Been surfing the forums for a couple of days now and finally decided to join. Looks like a lot of great information here that I look to take advantage of; as well as share what I know....
Showing results 1 to 21 of 21

 

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