Author Archives: Andrei
Disable temporary a foreign key constraint in MySQL
Disable temporary a foreign key constraint in MySQL Were you in the situation of having a mysql table and wanted to delete some records from it, but you were not allowed due to the constraints of that table? Don’t worry, me too. Or if you use foreign keys in your database tables, you’ll probably have problems
6 free mobile device emulators for testing your app
6 free mobile device emulators for testing your app If you made at least one website that was responsive, you certainly know how important these tools are. Here is a list with helpful websites in which I tested my apps during and after development. This is NOT a top, just a list. 1) Responsinator Responsinator
Symfony mapped entities error while generating getters and setters
Symfony mapped entities error while generating getters and setters If you ever used Symfony php framework, and you wanted to generate through command line the setters and getters for your entity after you defined everything in your entities files, and you got an error like this:
1 |
Namespace "Apn\ApnBundle\Entity\Users.php" does not contain any mapped entities. |
you probably want to know the solution of
How to redirect URL in Javascript or jQuery
How to redirect URL in Javascript or jQuery I will present some ways to redirect the user to another page from the client side using only plain javascript. 1) Using window.location.href you obtain a similar behavior as an HTTP redirect
1 2 3 |
<script language=”JavaScript”> window.location.href = 'http://www.google.com'; </script> |
2) Using window.location.replace
1 2 3 |
<script language=”javascript” type=”text/javascript”> window.location.replace("http://anothersite.com"); </script> |
window.location.href VS window.location.replace It is better than using window.location.href, because replace() does not put
Change value of selectbox in Zurb Foundation via JavaScript
Change value of selectbox in Zurb Foundation via JavaScript Some of us tried to change or will have to change via javascript a select-box that is generated from the custom forms of Zurb Foundation framework. You noticed or you will notice that it is not as simple as changing a default html select-box. Why ?
How to invoke dynamically a class method in PHP?
How to invoke dynamically a class method in PHP? Today will talk about calling a method from inside class, however you are in the situation of calling a method dynamically in a loop, for each element of an array. To do this we will make use of a php function called call_user_func.Using this function, you