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
Showing results 1 to 20 of 20
Search took
1.01
seconds.
Search:
Posts Made By:
ETbyrne
Forum:
General
01-31-2010, 04:19 AM
Replies:
6
recursive glob ?
Views:
1,974
Posted By
ETbyrne
OK, here's a sweet little function I made that...
OK, here's a sweet little function I made that does exactly what you need:
function glob_recursive($dir)
{
static $g = array();
foreach(glob($dir,GLOB_ONLYDIR) as $i=>$k)
{
$g[] =...
Forum:
The Lounge
10-06-2009, 07:37 PM
Replies:
13
A totally non-OOP PHP CMS?
Views:
1,145
Posted By
ETbyrne
It is true that OOP can be challenging to get...
It is true that OOP can be challenging to get used to at first, but once you get the hang of it you can never go back! It's just kind of an "aha" moment when you finally get it.
I'll dig around and...
Forum:
The Lounge
10-06-2009, 05:43 PM
Replies:
13
A totally non-OOP PHP CMS?
Views:
1,145
Posted By
ETbyrne
Basically, and I'm generalizing a ton here, OOP...
Basically, and I'm generalizing a ton here, OOP scripts use classes. So in order to have a script that is not OOP, then it would have to have no classes.
It would be nearly impossible to create a...
Forum:
XHTML, HTML, CSS
10-02-2009, 01:57 PM
Replies:
10
Auto margin?
Views:
1,340
Posted By
ETbyrne
is margin:auto; what you are looking for? Do note...
is margin:auto; what you are looking for? Do note that margin:auto; requires that you set a width to the element.
.product-line{
margin:auto;
width:600px;
}
Also note that some browsers...
Forum:
General
07-06-2009, 10:11 PM
Replies:
19
Worst programming language
Views:
2,065
Posted By
ETbyrne
PHP is one of the easiest languages to learn, but...
PHP is one of the easiest languages to learn, but it still provides the power necessary to build complex applications. I agree it isn't perfect, but I believe it's the best solution for building web...
Forum:
Advanced PHP Programming
05-08-2009, 08:11 PM
Replies:
3
Jesus help me dynamic update in drop down
Views:
726
Posted By
ETbyrne
http://skeptico.blogs.com/photos/uncategorized/god...
http://skeptico.blogs.com/photos/uncategorized/god_jesus_christ.jpg
Sorry, couldn't help myself.
Forum:
Absolute Beginners
04-14-2009, 04:55 PM
Replies:
6
Can you find the mistake in this code
Views:
697
Posted By
ETbyrne
It's an SQL error, you should take a look at...
It's an SQL error, you should take a look at this:
http://www.w3schools.com/sql/sql_insert.asp
Forum:
The Lounge
12-01-2008, 01:54 AM
Replies:
24
Open source programs
Views:
1,369
Posted By
ETbyrne
This topic is ridiculous and pointless... just...
This topic is ridiculous and pointless... just like my response :-)
Forum:
General
11-15-2008, 04:47 PM
Replies:
6
Search Engine Friendly URLs in PHP Without Mod_Rewrite
Views:
2,092
Posted By
ETbyrne
@Enfernikus: Yes. You are definitely right,...
@Enfernikus: Yes. You are definitely right, Mod_Rewrite is much more powerful than this method. But, the two methods could easily be used together to be more powerful that ether one alone! Again, a...
Forum:
General
11-14-2008, 06:32 PM
Replies:
6
Search Engine Friendly URLs in PHP Without Mod_Rewrite
Views:
2,092
Posted By
ETbyrne
Search Engine Friendly URLs in PHP Without Mod_Rewrite
I wrote a tutorial on how to make nice looking, search engine friendly URLs in PHP without using Mod_Rewrite.
Basically you can make a URL that normally looks like...
Forum:
MySQL & Databases
09-13-2008, 03:32 PM
Replies:
7
SELECT statement -- list of fields in WHERE clause
Views:
968
Posted By
ETbyrne
I really need to study up on my SQL statements...
I really need to study up on my SQL statements...
Forum:
General
07-17-2008, 02:56 PM
Replies:
5
People directly downloading files
Views:
666
Posted By
ETbyrne
Good find buggabill @robert: use a combination...
Good find buggabill
@robert: use a combination of htaccess and PHP. For instance, have the download link go to a PHP file that downloads the file from the .htaccess protected directory. This will...
Forum:
XHTML, HTML, CSS
07-10-2008, 02:40 PM
Replies:
13
New design
Views:
1,044
Posted By
ETbyrne
You specifically stated that it didn't work right...
You specifically stated that it didn't work right on FF3, I stated it didn't work at all for wide screens. ;-)
BTW: The design is looking good so far h0ly lag.
Forum:
Absolute Beginners
07-09-2008, 02:08 PM
Replies:
14
[Tutorial] Basic tutorial about class basics
Views:
1,777
Posted By
ETbyrne
Good tutorial, thanks man. :-)
Good tutorial, thanks man. :-)
Forum:
Script Giveaway
06-16-2008, 07:40 PM
Replies:
8
Simple Image Uploader
Views:
1,515
Posted By
ETbyrne
Use $filename = $_FILES['fieldname']['name']; to...
Use $filename = $_FILES['fieldname']['name']; to find the uploading file's name. Then just use
$filetype = explode('.', $filename);
$filetype = end($filetype);
to find the file exstention.
Also,...
Forum:
Javascript, AJAX, E4X
03-25-2008, 01:58 AM
Replies:
10
tab key emulation
Views:
2,482
Posted By
ETbyrne
That's a good find you have there sidisinsane,...
That's a good find you have there sidisinsane, the only problem is it adds spaces, not tabs. You can easily fix this though by switching out a few lines:
<html>
<head>
<script...
Forum:
Absolute Beginners
01-25-2008, 01:58 PM
Replies:
14
Adding data - more than one piece in a column?
Views:
1,136
Posted By
ETbyrne
EyeDentify's idea makes the most sense. You...
EyeDentify's idea makes the most sense. You should have different tables for the main movie information and actor information.
Forum:
Script Giveaway
01-24-2008, 11:28 PM
Replies:
26
Kudos CMS
Views:
3,552
Posted By
ETbyrne
Kudos CMS
This is a CMS (Content Management System) I have been working on for a long time. It is sort of like a Social Networking script
but for a small group of people, like a youth group, club, or...
Forum:
Show Off
01-19-2008, 09:56 PM
Replies:
10
Personal Portfolio Site
Views:
1,253
Posted By
ETbyrne
Really nice use of graphics and colors. :)
Really nice use of graphics and colors. :)
Forum:
General
01-19-2008, 09:37 PM
Replies:
1
PHP Ping
Views:
3,687
Posted By
ETbyrne
PHP Ping
A cool little site I found while looking for a PHP ping script.
> TheWorldsEnd.NET (http://www.theworldsend.net)
The ping script is at the top of the page.
Showing results 1 to 20 of 20
All times are GMT. The time now is
10:52 PM
.
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