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 25 of 26
Search took 0.00 seconds.
Search: Posts Made By: awuehr
Forum: Libraries & Extensions 01-23-2009, 12:43 PM
Replies: 27
Views: 4,973
Posted By awuehr
There's a brandnew tutorial how to integrate...

There's a brandnew tutorial how to integrate PHPTAL with ZF:
http://taat.pl/article/zend_framework_tutorial/
Forum: Libraries & Extensions 01-08-2009, 12:54 PM
Replies: 27
Views: 4,973
Posted By awuehr
Your solution looks quite good. :) About the...

Your solution looks quite good. :)

About the 3d-array-problem: Even in your code the template itself does not decide how many cols to display. You're doing this in your PHP script. So IMO there is...
Forum: Libraries & Extensions 01-08-2009, 05:50 AM
Replies: 27
Views: 4,973
Posted By awuehr
First of all you can define as much templates in...

First of all you can define as much templates in one file, as you want. This file only has to be valid XML.

<html>
<head>...</head>
<body>
<tal:block condition="submitted">...show...
Forum: General 12-09-2008, 09:45 AM
Replies: 2
Views: 525
Posted By awuehr
If it is about the SimpleXMLElement class, this...

If it is about the SimpleXMLElement class, this one has not to be included, it is a core class in php.
Forum: Absolute Beginners 11-25-2008, 05:44 AM
Replies: 3
Views: 932
Posted By awuehr
Well, as you use the php function mail(), the...

Well, as you use the php function mail(), the only way you can configure the mta is via the corresponding settings in your php.ini, I think.

I know 2 great frameworks for sending e-mails in php. The...
Forum: MySQL & Databases 11-19-2008, 01:24 PM
Replies: 15
Views: 907
Posted By awuehr
I think you are not allowed to create a database....

I think you are not allowed to create a database. You might want to create a table. Shared hosting providers usually don't give you a whole Mysql-server, only a single database. So there should...
Forum: General 11-14-2008, 06:19 AM
Replies: 7
Views: 800
Posted By awuehr
With foreach($items as $key => $item) echo...

With
foreach($items as $key => $item)
echo $item,$key;
you get the key of the array.
Forum: Show Off 11-14-2008, 06:16 AM
Replies: 3
Views: 1,240
Posted By awuehr
Great work, but there are two things missing: *...

Great work, but there are two things missing:
* the table caption
* the possibilty to add a <th></th> to a row in tbody and tfoot

btw: th is allowed in tr, tr is allowed in tbody, thead, tfoot and...
Forum: General 11-12-2008, 06:27 AM
Replies: 4
Views: 899
Posted By awuehr
Take a look at http://www.craftysyntax.com/

Take a look at http://www.craftysyntax.com/
Forum: Feedback 11-11-2008, 03:29 PM
Replies: 7
Views: 1,207
Posted By awuehr
Thanks alot!

Thanks alot!
Forum: Tips & Tricks 11-11-2008, 09:10 AM
Replies: 28
Views: 2,883
Posted By awuehr
Or in the OO way: class Infinite_Loop { ...

Or in the OO way:

class Infinite_Loop
{
public function __construct()
{
new self();
}
}
Forum: Feedback 11-11-2008, 09:01 AM
Replies: 7
Views: 1,207
Posted By awuehr
I am annoyed by this behaviour too, a fix would...

I am annoyed by this behaviour too, a fix would be great...
Forum: Libraries & Extensions 11-10-2008, 10:04 AM
Replies: 27
Views: 4,973
Posted By awuehr
But the first one is VERY basic...

But the first one is VERY basic...
Forum: Libraries & Extensions 11-10-2008, 09:30 AM
Replies: 27
Views: 4,973
Posted By awuehr
First part (basics) of a short tutorial is...

First part (basics) of a short tutorial is waiting to be approved... :)


Greetings,

Alex
Forum: XHTML, HTML, CSS 11-10-2008, 07:11 AM
Replies: 5
Views: 1,205
Posted By awuehr
You could give this one a try: Install multiple...

You could give this one a try:
Install multiple versions of IE on your PC | TredoSoft (http://tredosoft.com/Multiple_IE)
Forum: Libraries & Extensions 11-07-2008, 09:11 AM
Replies: 27
Views: 4,973
Posted By awuehr
Good idea. I really should do this, but I am not...

Good idea. I really should do this, but I am not very good explaining technical things in english.

Is there a possibility to preview an article?
Forum: Absolute Beginners 11-07-2008, 08:11 AM
Replies: 5
Views: 819
Posted By awuehr
Hint: PHP: readdir - Manual...

Hint: PHP: readdir - Manual (http://us3.php.net/manual/en/function.readdir.php) and PHP: glob - Manual (http://us3.php.net/glob)

Greetings,

Alex
Forum: Libraries & Extensions 11-06-2008, 04:56 PM
Replies: 27
Views: 4,973
Posted By awuehr
Btw you can use PHPTAL for templating any...

Btw you can use PHPTAL for templating any XML-Output like RSS/Atom feeds or XSL-FO where XSLT transformation is oversized.


Greetings

Alex
Forum: Libraries & Extensions 11-06-2008, 03:57 PM
Replies: 27
Views: 4,973
Posted By awuehr
Eat this: Zend_View_PhpTal - Matthew Ratzloff -...

Eat this: Zend_View_PhpTal - Matthew Ratzloff - Zend Framework Wiki (http://framework.zend.com/wiki/display/ZFPROP/Zend_View_PhpTal+-+Matthew+Ratzloff) :-D
I don't know if it works with current...
Forum: Libraries & Extensions 11-06-2008, 03:54 PM
Replies: 27
Views: 4,973
Posted By awuehr
You should consider to use an 3d array...

You should consider to use an 3d array like
$phptal->persons = array(
array('person1', 'person2', 'person3', 'person4'),
array('person5', 'person6', 'person7', 'person8'),
...
Forum: Libraries & Extensions 11-06-2008, 01:51 PM
Replies: 27
Views: 4,973
Posted By awuehr
Hi Runar, this is done via Macros. Lets say you...

Hi Runar,

this is done via Macros.

Lets say you have one file (macros.html) containing your header, footer, etc. containing this code:


<div metal:define-macro="header">
Your header here
</div>
Forum: Libraries & Extensions 10-24-2008, 08:34 AM
Replies: 27
Views: 4,973
Posted By awuehr
I think a poll about what template engines people...

I think a poll about what template engines people use could be interesting. But which PHP template engines except from Smarty and PHPTAL are worth to be mentioned?
Forum: Advanced PHP Programming 10-22-2008, 07:07 AM
Replies: 13
Views: 854
Posted By awuehr
Just try the PEAR package Text_CAPTCHA...

Just try the PEAR package Text_CAPTCHA (http://pear.php.net/package/Text_CAPTCHA/).

Greetings,

Alex
Forum: General 10-20-2008, 06:27 AM
Replies: 3
Views: 743
Posted By awuehr
Images Hi Benton, In the HTML-Form just write: <input...

Hi Benton,

In the HTML-Form just write:

<input type="text" name="nav[float]" />
<input type="text" name="nav[width]" />
<input type="text" name="nav[a][font_family]" />
<input type="text"...
Forum: Advanced PHP Programming 10-20-2008, 06:17 AM
Replies: 12
Views: 677
Posted By awuehr
Hi cf, your if-else block at the regex-thingy...

Hi cf,

your if-else block at the regex-thingy says: If the regex matches, do something in your Db, if not, output 'Your account was made'. I don't know if that is what you want your script to...
Showing results 1 to 25 of 26

 

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