Search found 3 matches

by adguru
Sun Jun 15, 2008 12:41 pm
Forum: PHP - Theory and Design
Topic: Queries regarding "ZEND"
Replies: 2
Views: 738

Re: Queries regarding "ZEND"

Zend is a community as well as an engine for php.
by adguru
Sun Jun 15, 2008 12:40 pm
Forum: PHP - Security
Topic: session on dedicated server
Replies: 8
Views: 1571

Re: session on dedicated server

Store only temporary data in sessions. Do not store confidential information like passwords in sessions. Always use encoding for security.

Enjoy coding :)
by adguru
Sun Jun 15, 2008 12:35 pm
Forum: PHP - Code
Topic: Bizarre characters on page - how to stop??
Replies: 4
Views: 324

Re: Bizarre characters on page - how to stop??

Create a filter array and use it everytime. For example,

$x[0][0]="splchar"
$x[0][1]="text equivalent"

I hope this helps, most of the forums use this technique.