Related Posts
How to use request data in a component in CakePHP
"Add this in your component public function initialize(Controller $controller) { $this->controller = $controller;... read more
Using image as link in CAKEPHP and html code escape problem
Following Code is required for that: echo $this->Html->image("your_img.png", array( 'url' => array('controller' => 'some_controller',... read more
How to remove, uninstall ICLOUD from windows 8 or windows 10
After a lots of headache, I find the solutions. I am using... read more
Rename or change default timestamps created_at, updated_at – Laravel
Best method to change Laravel's default timestamps: Step 1: Override const in specific... read more
How to remove Browser Modifier:Win32/Soctuseer Virus
If you are a victim of Browser Modifier Virus ( malware ) Browser... read more
How to Remove public from url laravel framework 5.x
Create a DIR in your laravel app root and name it "myapp", you... read more
How to write emails faster
One of the reasons why smart phones have become so popular is... read more
How to run, execute insert query in Drupal 8
"There may be several other possible ways, but I know one simple... read more
How to get last insert id in Codeigniter
$this->db->insert('users', $data); # where $data is an array $insert_id = $this->db->insert_id(); # insert_id()... read more
Leave a Reply