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.02 seconds.
Search: Posts Made By: TlcAndres
Forum: Absolute Beginners 04-27-2008, 05:00 PM
Replies: 18
Views: 1,132
Posted By TlcAndres
Not exactly, Village made a point from my lack of...

Not exactly, Village made a point from my lack of proper wording. Example:



ob_start();
if(!isset($_COOKIE['seperate'])){
$value = md5(time());
//check if it's already in there...its unlike but...
Forum: The Lounge 04-13-2008, 04:34 PM
Replies: 5
Views: 912
Posted By TlcAndres
webmd.com would probably be a better place to...

webmd.com would probably be a better place to start.
Forum: Javascript, AJAX, E4X 04-11-2008, 08:30 PM
Replies: 10
Views: 2,482
Posted By TlcAndres
The only downside is it works when ever it...

The only downside is it works when ever it presses tab but thats the only version, the new one just has the addons to see if it's focused on the textbox
Forum: General 03-26-2008, 09:22 PM
Replies: 7
Views: 702
Posted By TlcAndres
In my opinion it's a matter of debugging Alpha -...

In my opinion it's a matter of debugging

Alpha - software released that was only tested for bugs by the developer when you release compile the list of bugs (there will be alot of its complex)

Beta...
Forum: General 03-20-2008, 12:46 AM
Replies: 12
Views: 928
Posted By TlcAndres
The speed boost gained by less line of code is...

The speed boost gained by less line of code is insignificant as best, readability of your code also goes down loads - it looks nice and obfuscated but keep it simple.
Forum: Advanced PHP Programming 03-18-2008, 07:47 PM
Replies: 6
Views: 793
Posted By TlcAndres
foreach($values as $find=>$replace){ ...

foreach($values as $find=>$replace){
$content = str_replace($find,$replace,$content);
}


a better method would be..


$keys = array_keys($values);
$vals = array_values($values);
Forum: Javascript, AJAX, E4X 03-11-2008, 09:58 PM
Replies: 4
Views: 904
Posted By TlcAndres
Seems like a very nice easy to use framework!...

Seems like a very nice easy to use framework! I'll certainly be putting it through it's paces in the next few days - the documentation is a bit sparse though.
Forum: XHTML, HTML, CSS 03-07-2008, 10:39 PM
Replies: 9
Views: 1,039
Posted By TlcAndres
Why not use z-index? From my understanding you...

Why not use z-index? From my understanding you want the images to be under the div.
Forum: Script Giveaway 03-07-2008, 08:57 PM
Replies: 1
Views: 1,182
Posted By TlcAndres
Some functions and a class I use alot

Well I use a DB class repeatedly for almost every project I work with and It's pretty short and does it's job

DB class

Essentially


<?php

/**
Forum: The Lounge 03-02-2008, 09:35 PM
Replies: 3
Views: 725
Posted By TlcAndres
Camtasia should just the trick - I'm not 100%...

Camtasia should just the trick - I'm not 100% sure whether it can record to FLV but I'm fairly sure it can.
Forum: Absolute Beginners 02-26-2008, 11:53 PM
Replies: 13
Views: 821
Posted By TlcAndres
I believe mysql_affected_rows() is what you're...

I believe mysql_affected_rows() is what you're looking for, look it up on php.net
Forum: Absolute Beginners 02-25-2008, 01:18 AM
Replies: 13
Views: 1,481
Posted By TlcAndres
Maybe it's just me, but OO isn't all that hard,...

Maybe it's just me, but OO isn't all that hard, the terminology is what gets people - Anywho, as Abiko said it's very important to learn all the built in functions and then some.
Forum: General 02-09-2008, 03:00 AM
Replies: 15
Views: 894
Posted By TlcAndres
Take of the last ","

Take of the last ","
Forum: Absolute Beginners 02-02-2008, 04:08 PM
Replies: 29
Views: 7,531
Posted By TlcAndres
<a href="<?=$website;?>" alt="" ><?php echo...

<a href="<?=$website;?>" alt="" ><?php echo $guestsname; ?></a>

Would work..I believe
Forum: General 01-28-2008, 11:07 AM
Replies: 7
Views: 734
Posted By TlcAndres
As long a the variables exists on the url bar,...

As long a the variables exists on the url bar, the included file should have access to the super globals too.
Forum: Show Off 01-16-2008, 11:21 AM
Replies: 10
Views: 1,253
Posted By TlcAndres
It's a nice template but I think the splashy...

It's a nice template but I think the splashy beveled thing is a bit out of place. otherwise nice portfolio.
Forum: Absolute Beginners 01-09-2008, 11:34 PM
Replies: 4
Views: 1,248
Posted By TlcAndres
array_map speed

Maybe it's just me but I was doing a test and found a normal loop to be faster then array_map (atleast in my case)..here are some of the speed results...

1) looping through an array and using...
Forum: Advanced PHP Programming 01-07-2008, 08:38 PM
Replies: 11
Views: 9,085
Posted By TlcAndres
$_POST =...

$_POST = array_map('htmlentities',$_POST);


array_map goes into every array element and preforms the function be it user made or from the system.
Forum: Absolute Beginners 01-01-2008, 09:25 PM
Replies: 7
Views: 800
Posted By TlcAndres
yes you can set a session to the value of an...

yes you can set a session to the value of an array.
Forum: General 01-01-2008, 05:38 PM
Replies: 7
Views: 1,217
Posted By TlcAndres
It's not so much sticking to 3 clicks as it is...

It's not so much sticking to 3 clicks as it is keeping navigation very clear and concise, big pictures tend and information titles tend to help them along.
Forum: General 12-20-2007, 10:59 PM
Replies: 11
Views: 655
Posted By TlcAndres
A simple member management system would make you...

A simple member management system would make you go through many a basic MySQL functions as well as sessions handling and if you decide to do CAPTCHA validation it'll introduce you to GD it'll teach...
Showing results 1 to 21 of 21

 

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