PHP Web Development Tips and Tricks

PHP Web Development Tips and Tricks Echo() versus print() Echo is quicker than print. Both functions are used for the same thing but echo is the language constructs which return nothing, which publish will return 0 or 1 based on success or failure. About accessing arrays E.g. $row[‘id’] is 7 times faster than $row[id] Derived …

PHP Web Development Tips and Tricks Read More »