Re: [PHP] Concatenation vs. Interpolation

2007-08-12 Thread Danial Rahmanzadeh
In my opinion, concatenation reduces code readability because unlike
java(that uses + operator), php uses dot(.) for concatenation consider the
following codes:
//java
String mystr=hello+world;
is more readable from:
//php
$mystr=hello.world;

if you only need echoing something to output(which is not usually the case
in MVC and/or other effective methods), the fastest way is using comma:
echo 'hello',$mystr,blah,blah ;


[PHP] php5 cert

2007-05-20 Thread Danial Rahmanzadeh

are volcan exams really harder than actual php5 exam as phparch asserted?


[PHP] People's misbehavior on the list

2007-05-18 Thread Danial Rahmanzadeh

hey,
I use Gmail but i have the same problem.


Re: [PHP] People's misbehavior on the list

2007-05-18 Thread Danial Rahmanzadeh

plus 2853 mb FREE storage


[PHP] Setting Up A Simple Shopping Cart

2007-05-18 Thread Danial Rahmanzadeh

oscommerce is very bad on installin' new templates. come and join developing
devenetstore. an open source project:
www.devnetstore.com


[PHP] People's misbehavior on the list

2007-05-18 Thread Danial Rahmanzadeh

lol


[PHP] People's misbehavior on the list

2007-05-18 Thread Danial Rahmanzadeh

maybe


[PHP] PHP textbook suggestions?

2007-04-06 Thread Danial Rahmanzadeh

I think PHP Architect's Zend PHP5 certification Study guide is good. as
authors indicate in the book:

We wrote php|architect's Zend PHP 5 Certification Study Guide with the
specific intent
of making it useful in two situations:
• For candidates who are preparing for the Zend exam
• For student of instructor-led classes who are approaching and studying PHP
for the first time

Dan


[PHP] Book Suggestion for ZCE

2007-03-22 Thread Danial Rahmanzadeh

hey dudes,
i want to know that which books are good to read  before ZCE exam.
I have read php 5 and php 4 study guides and php 4 practice tests. I have
also read php|architect's guide to php security and bought a 10 slot sample
exam. What else do you suggest?
cheers,
Danial


[PHP] encoding php codes

2007-02-25 Thread Danial Rahmanzadeh

Zend Guard is a good software for encoding php applications. but that's too
expensive. I searched for a free encoder software and found PHP Encoder:
http://www.freedownloadscenter.com/Web_Authoring/Scripting_Tools/PHP_Encoder.html
but i don't know if PHP Encoder is powerful.
please tell me if you have worked with PHP Encoder. Or if another free
software is available.
Regards,


[PHP] css in mail()

2007-02-19 Thread Danial Rahmanzadeh

how can i use css with mail()?
thank u


[PHP] print() or echo

2007-02-13 Thread Danial Rahmanzadeh

is it true that echo is a bit faster than print()? in general, when we don't
need a return value, which one is better to choose?
Cheers,
Danial Rahmanzadeh