Search Results

0
votes

MYSQL ERROR

You need to add the names of the fields you are inserting to INSERT INTO blog_articles ('title', 'tags', 'category', 'blog', 'author', 'date') VALUES ('$title', '$tags', '$category' …
0
votes

Including file in PHP ?

I would suggest using xdebug PHP extention to benchmark and profile your script. It will tell you how long each function took to execute. You can find more information on how to install it and what …
0
votes

OOP/PHP5: Calling Class A from Class B - or, Making the horse jump

I would suggest reading about the factory and strategy pattern. You can read more about this from chapter one of this fantastic book. …