Press "Enter" to skip to content

How to reverse value of integer or string in php?

0

The logic of the below methods will help you to reverse the integer in any language, here I am doing it in PHP. So let’s create a function with the name of reverse_integer:- it will…

How to delete record data from another table id – MySQL

0

Lets take an example that we have two table one have record of students and other have id which have to delete in table 1, so we write query like this:- DELETE FROM table_1 WHERE…

No input file specified – Codeigniter

0

No input file specified – Codeigniter issues:- this issue sometimes caused by the .htaccess file, so change your .htaccess file to the below code RewriteEngine onRewriteBase /RewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-dRewriteRule ^(.*)$ index.php?/$1 [L] Also…