Check a value with encrypted field in mysql The Next CEO of Stack OverflowHow do you set a default value for a MySQL Datetime column?Can I concatenate multiple MySQL rows into one field?Which MySQL data type to use for storing boolean valuesHow do I connect to a MySQL Database in Python?Should I use the datetime or timestamp data type in MySQL?Finding duplicate values in MySQLHow to get a list of MySQL user accountsHow do I check if a string contains a specific word?How to reset AUTO_INCREMENT in MySQL?How to import an SQL file using the command line in MySQL?

How does the mv command work with external drives?

How do I go from 300 unfinished/half written blog posts, to published posts?

How do scammers retract money, while you can’t?

Are there any unintended negative consequences to allowing PCs to gain multiple levels at once in a short milestone-XP game?

Can I equip Skullclamp on a creature I am sacrificing?

Why has the US not been more assertive in confronting Russia in recent years?

Preparing Indesign booklet with .psd graphics for print

Is micro rebar a better way to reinforce concrete than rebar?

Can I run my washing machine drain line into a condensate pump so it drains better?

To not tell, not take, and not want

What does convergence in distribution "in the Gromov–Hausdorff" sense mean?

Won the lottery - how do I keep the money?

Is 'diverse range' a pleonastic phrase?

How does the Z80 determine which peripheral sent an interrupt?

Help understanding this unsettling image of Titan, Epimetheus, and Saturn's rings?

Multiple labels for a single equation

Would this house-rule that treats advantage as a +1 to the roll instead (and disadvantage as -1) and allows them to stack be balanced?

What's the best way to handle refactoring a big file?

Would a completely good Muggle be able to use a wand?

Why do remote companies require working in the US?

How to solve a differential equation with a term to a power?

MessageLevel in QGIS3

Are there any limitations on attacking while grappling?

If the heap is initialized for security, then why is the stack uninitialized?



Check a value with encrypted field in mysql



The Next CEO of Stack OverflowHow do you set a default value for a MySQL Datetime column?Can I concatenate multiple MySQL rows into one field?Which MySQL data type to use for storing boolean valuesHow do I connect to a MySQL Database in Python?Should I use the datetime or timestamp data type in MySQL?Finding duplicate values in MySQLHow to get a list of MySQL user accountsHow do I check if a string contains a specific word?How to reset AUTO_INCREMENT in MySQL?How to import an SQL file using the command line in MySQL?










1















I am using Codeigniter encrypt library for data encryption and store it on db,but now i want to check a value exist or not in this table.



I have 3 fields in table which are encrypted,if I give same value it will store different string in field every time, so how can I check them my value ?



Table



enter image description here



controller code



$result = $this->Home_model->check_mail($this->encrypt->encode($this->input->post('email')));


model code



function check_mail($email)
$this->db->select('*');
$this->db->from('enquiry');
$this->db->where('email',$email);
$query = $this->db->get();
return $query->num_rows();










share|improve this question



















  • 1





    add your code that you have tried and your database

    – xmastertje
    Mar 8 at 12:29











  • Other then building A.I in the PHP code to geuss the encrypting in the future? You can't most likely you are looking for hashing (SHA256, SHA512 for example) instead of a encryption which gives a different result for each time you execute like MCrypt, Blowfish ? .. But you also might be looking for a password_verify() hard to say without user case, example code and table structure.

    – Raymond Nijland
    Mar 8 at 12:35















1















I am using Codeigniter encrypt library for data encryption and store it on db,but now i want to check a value exist or not in this table.



I have 3 fields in table which are encrypted,if I give same value it will store different string in field every time, so how can I check them my value ?



Table



enter image description here



controller code



$result = $this->Home_model->check_mail($this->encrypt->encode($this->input->post('email')));


model code



function check_mail($email)
$this->db->select('*');
$this->db->from('enquiry');
$this->db->where('email',$email);
$query = $this->db->get();
return $query->num_rows();










share|improve this question



















  • 1





    add your code that you have tried and your database

    – xmastertje
    Mar 8 at 12:29











  • Other then building A.I in the PHP code to geuss the encrypting in the future? You can't most likely you are looking for hashing (SHA256, SHA512 for example) instead of a encryption which gives a different result for each time you execute like MCrypt, Blowfish ? .. But you also might be looking for a password_verify() hard to say without user case, example code and table structure.

    – Raymond Nijland
    Mar 8 at 12:35













1












1








1








I am using Codeigniter encrypt library for data encryption and store it on db,but now i want to check a value exist or not in this table.



I have 3 fields in table which are encrypted,if I give same value it will store different string in field every time, so how can I check them my value ?



Table



enter image description here



controller code



$result = $this->Home_model->check_mail($this->encrypt->encode($this->input->post('email')));


model code



function check_mail($email)
$this->db->select('*');
$this->db->from('enquiry');
$this->db->where('email',$email);
$query = $this->db->get();
return $query->num_rows();










share|improve this question
















I am using Codeigniter encrypt library for data encryption and store it on db,but now i want to check a value exist or not in this table.



I have 3 fields in table which are encrypted,if I give same value it will store different string in field every time, so how can I check them my value ?



Table



enter image description here



controller code



$result = $this->Home_model->check_mail($this->encrypt->encode($this->input->post('email')));


model code



function check_mail($email)
$this->db->select('*');
$this->db->from('enquiry');
$this->db->where('email',$email);
$query = $this->db->get();
return $query->num_rows();







php mysql






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 8 at 14:26









executable

1,9742924




1,9742924










asked Mar 8 at 12:27









diptidipti

548




548







  • 1





    add your code that you have tried and your database

    – xmastertje
    Mar 8 at 12:29











  • Other then building A.I in the PHP code to geuss the encrypting in the future? You can't most likely you are looking for hashing (SHA256, SHA512 for example) instead of a encryption which gives a different result for each time you execute like MCrypt, Blowfish ? .. But you also might be looking for a password_verify() hard to say without user case, example code and table structure.

    – Raymond Nijland
    Mar 8 at 12:35












  • 1





    add your code that you have tried and your database

    – xmastertje
    Mar 8 at 12:29











  • Other then building A.I in the PHP code to geuss the encrypting in the future? You can't most likely you are looking for hashing (SHA256, SHA512 for example) instead of a encryption which gives a different result for each time you execute like MCrypt, Blowfish ? .. But you also might be looking for a password_verify() hard to say without user case, example code and table structure.

    – Raymond Nijland
    Mar 8 at 12:35







1




1





add your code that you have tried and your database

– xmastertje
Mar 8 at 12:29





add your code that you have tried and your database

– xmastertje
Mar 8 at 12:29













Other then building A.I in the PHP code to geuss the encrypting in the future? You can't most likely you are looking for hashing (SHA256, SHA512 for example) instead of a encryption which gives a different result for each time you execute like MCrypt, Blowfish ? .. But you also might be looking for a password_verify() hard to say without user case, example code and table structure.

– Raymond Nijland
Mar 8 at 12:35





Other then building A.I in the PHP code to geuss the encrypting in the future? You can't most likely you are looking for hashing (SHA256, SHA512 for example) instead of a encryption which gives a different result for each time you execute like MCrypt, Blowfish ? .. But you also might be looking for a password_verify() hard to say without user case, example code and table structure.

– Raymond Nijland
Mar 8 at 12:35












0






active

oldest

votes












Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55063230%2fcheck-a-value-with-encrypted-field-in-mysql%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55063230%2fcheck-a-value-with-encrypted-field-in-mysql%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Can't initialize raids on a new ASUS Prime B360M-A motherboard2019 Community Moderator ElectionSimilar to RAID config yet more like mirroring solution?Can't get motherboard serial numberWhy does the BIOS entry point start with a WBINVD instruction?UEFI performance Asus Maximus V Extreme

Identity Server 4 is not redirecting to Angular app after login2019 Community Moderator ElectionIdentity Server 4 and dockerIdentityserver implicit flow unauthorized_clientIdentityServer Hybrid Flow - Access Token is null after user successful loginIdentity Server to MVC client : Page Redirect After loginLogin with Steam OpenId(oidc-client-js)Identity Server 4+.NET Core 2.0 + IdentityIdentityServer4 post-login redirect not working in Edge browserCall to IdentityServer4 generates System.NullReferenceException: Object reference not set to an instance of an objectIdentityServer4 without HTTPS not workingHow to get Authorization code from identity server without login form

2005 Ahvaz unrest Contents Background Causes Casualties Aftermath See also References Navigation menue"At Least 10 Are Killed by Bombs in Iran""Iran"Archived"Arab-Iranians in Iran to make April 15 'Day of Fury'"State of Mind, State of Order: Reactions to Ethnic Unrest in the Islamic Republic of Iran.10.1111/j.1754-9469.2008.00028.x"Iran hangs Arab separatists"Iran Overview from ArchivedConstitution of the Islamic Republic of Iran"Tehran puzzled by forged 'riots' letter""Iran and its minorities: Down in the second class""Iran: Handling Of Ahvaz Unrest Could End With Televised Confessions""Bombings Rock Iran Ahead of Election""Five die in Iran ethnic clashes""Iran: Need for restraint as anniversary of unrest in Khuzestan approaches"Archived"Iranian Sunni protesters killed in clashes with security forces"Archived