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
Page 1 of 3
1
2
3
>
Page 1 of 3
1
2
3
>
Showing results 1 to 25 of 64
Search took
0.07
seconds.
Search:
Posts Made By:
Sakakuchi
Forum:
General
06-16-2009, 05:52 AM
Replies:
11
$content = include('file2include.php');
Views:
598
Posted By
Sakakuchi
Well as I said it was not my code -and I changed...
Well as I said it was not my code -and I changed it later on to just "include" - but you could use for something like:
We want to build an small login widget. The html code is somewhere in an extra...
Forum:
The Lounge
06-16-2009, 05:45 AM
Replies:
5
Forgetting to write something down
Views:
594
Posted By
Sakakuchi
I use sunbird and Tomboy, but when you forget to...
I use sunbird and Tomboy, but when you forget to write it down, no programm will help ;-)
Forum:
Show Off
06-14-2009, 08:35 AM
Replies:
47
New PHP Framework
Views:
2,705
Posted By
Sakakuchi
Although all stuff I read looked quite good...
Although all stuff I read looked quite good according your framework, I didnt download, and won't use it because of the licensing.
Don't get me wrong, I fully understand your point for making it...
Forum:
The Lounge
06-13-2009, 03:29 PM
Replies:
8
Quiet Weekends!
Views:
614
Posted By
Sakakuchi
You are dooing jujitsu? Thats quite...
You are dooing jujitsu? Thats quite interesting...
Well, I often stay longer at work, since thats the only day in the week I don't have school in the evening. When I come home, I watch some film -...
Forum:
The Lounge
06-13-2009, 09:09 AM
Replies:
6
Project Management System
Views:
672
Posted By
Sakakuchi
Cool Stuff, I would love to see some screenshots...
Cool Stuff, I would love to see some screenshots of the interfache :-)
I worked with Mantis an while ago - and disliked it totally. It's totally unclear and confusing. My recommodation would be, keep...
Forum:
The Lounge
06-12-2009, 08:13 PM
Replies:
5
Leaving for a bit
Views:
554
Posted By
Sakakuchi
Enjoy your stay - I'll keep an eye on us :-D
Enjoy your stay - I'll keep an eye on us :-D
Forum:
The Lounge
06-12-2009, 08:06 PM
Replies:
24
How do you write your code?
Views:
1,064
Posted By
Sakakuchi
that css-code-style is new to me to. Might give...
that css-code-style is new to me to. Might give it a try...
Forum:
The Lounge
06-12-2009, 08:04 PM
Replies:
15
My Absence
Views:
734
Posted By
Sakakuchi
Hope to see you soon again wildhoney And to...
Hope to see you soon again wildhoney
And to compete in this OS-fight:
Vista makes me get boosebumps to :-D - I'm using XP,Ubuntu eeebuntu. Looking forward to Windows7 to replace my XP
Forum:
General
06-12-2009, 07:55 PM
Replies:
11
$content = include('file2include.php');
Views:
598
Posted By
Sakakuchi
No idea how wildhoney wants to go with eval - but...
No idea how wildhoney wants to go with eval - but you can do it like:
<?php
ob_start();
include('file2include.php');
$var = ob_get_contents();
ob_end_clean();
?>
Forum:
General
06-12-2009, 11:41 AM
Replies:
11
$content = include('file2include.php');
Views:
598
Posted By
Sakakuchi
lol, sorry for an dumb question like that, but I...
lol, sorry for an dumb question like that, but I got a code like that
$content = include('pages/ok_cart_product.php');
$content = substr($content,0,-1);
echo $content;
So I thought the one was...
Forum:
Tips & Tricks
06-11-2009, 02:06 PM
Replies:
5
PHP Script to Extract Email Address from any text
Views:
6,037
Posted By
Sakakuchi
jeah, - just wanted to point out that it's...
jeah, - just wanted to point out that it's possible to solve it with one line of code - when the RegEx is right (well mine is not :-P )
Forum:
Tips & Tricks
06-11-2009, 10:19 AM
Replies:
5
PHP Script to Extract Email Address from any text
Views:
6,037
Posted By
Sakakuchi
dscreck is right - it's quite annoying. Still...
dscreck is right - it's quite annoying.
Still you could shorten the whole function somehow like that:
function extractEmail($string)
{
$regEx =...
Forum:
General
06-11-2009, 09:29 AM
Replies:
11
$content = include('file2include.php');
Views:
598
Posted By
Sakakuchi
$content = include('file2include.php');
Well I tried something funny some days ago - include a file with include and put it in a variable :-)
file2include.php
<table>
<tr><td><?php echo 'hello world' ?></td></tr>
</table>
now I include...
Forum:
The Lounge
06-11-2009, 09:18 AM
Replies:
24
How do you write your code?
Views:
1,064
Posted By
Sakakuchi
Just like Salathe if ($a == 1) { echo 'Hello...
Just like Salathe
if ($a == 1)
{
echo 'Hello world!';
}
Forum:
Member Introductions
06-11-2009, 09:13 AM
Replies:
13
New Guy
Views:
608
Posted By
Sakakuchi
lol wildhoney :-D Welcome to the forum
lol wildhoney :-D
Welcome to the forum
Forum:
Advanced PHP Programming
06-11-2009, 08:56 AM
Replies:
5
UTF8 support
Views:
838
Posted By
Sakakuchi
To make a fully working Page with UTF8 encoding...
To make a fully working Page with UTF8 encoding you just need to follow some simple rules:
1. Make sure your Database Fields are throughout UTF8 encoded.
2. Make the Database Connection to UTF8....
Forum:
Tips & Tricks
06-11-2009, 08:38 AM
Replies:
10
Tired of Print - (Just an idea lol)
Views:
968
Posted By
Sakakuchi
it's quite funny, I recently had a system on my...
it's quite funny, I recently had a system on my desk which also used __ for printing. But that stuff went through an translation system later on.
Forum:
The Lounge
06-06-2009, 10:53 AM
Replies:
10
talkphp favicon file
Views:
717
Posted By
Sakakuchi
Wow, love the new icon.
Wow, love the new icon.
Forum:
Absolute Beginners
06-06-2009, 10:45 AM
Replies:
13
PHP IDE question
Views:
961
Posted By
Sakakuchi
For real developing (@work or @home):...
For real developing (@work or @home): Eclipse
When I'm on tour (with EEE): VIM
And for some quick dirty changes here and there: Notpad++ or GVIM under Windows - and VIM or Nano under Linux.
Used to...
Forum:
Advanced PHP Programming
06-02-2009, 06:16 PM
Replies:
2
Captcha image isn't showing
Views:
769
Posted By
Sakakuchi
does "templates/ChalkboardBold.ttf" exists? If...
does "templates/ChalkboardBold.ttf" exists? If not place it there. Or show to another falid font file.
Further - which line is Nr.102?
Forum:
General
06-01-2009, 05:59 PM
Replies:
12
Email script problem
Views:
652
Posted By
Sakakuchi
Hmm true - didn't think of that. Considering that...
Hmm true - didn't think of that. Considering that I would also choose the Session - Solution. :-D
Forum:
Absolute Beginners
06-01-2009, 05:55 PM
Replies:
5
I dont understand this..
Views:
804
Posted By
Sakakuchi
Take a look at the source in your browser - ...
Take a look at the source in your browser - wheter the links are generated correctly. I'd say the problem is there. I would think you get an error with $_SERVER['PHP_SELF']. Check wheter that...
Forum:
News and Announcements
06-01-2009, 02:30 PM
Replies:
50
Sticky:
TalkPHP IRC: Come and join us!
Views:
16,108
Posted By
Sakakuchi
Found it just now, see you there then....
Found it just now, see you there then....
Forum:
Member Introductions
06-01-2009, 02:23 PM
Replies:
11
Hi everybody !
Views:
651
Posted By
Sakakuchi
German sounds like yelling - lol as a german I...
German sounds like yelling - lol
as a german I would say - italian sounds like yelling :-D
However, welcome to the forum
Oh jeah, if anyone needs help with german, just drop me an PM ;)
Forum:
General
06-01-2009, 02:18 PM
Replies:
12
Email script problem
Views:
652
Posted By
Sakakuchi
Now to make things more complicated :-P You...
Now to make things more complicated :-P
You could also take the IP of the user, log it, and check whether he already send you a message in - lets say last hour. If yes, then he's not allowed to send...
Showing results 1 to 25 of 64
Page 1 of 3
1
2
3
>
All times are GMT. The time now is
06:33 AM
.
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