web_master Posted February 26, 2012 Share Posted February 26, 2012 Hi, I got a problem, and I don't know where is a problem. <?php $TextUpload = $_POST['area1']; $TextUpload = str_replace(" "," ", $TextUpload); $TEXTAREAPreg = $TextUpload; $Replacement['0'] = '/\\\"(.*?)\\\"/'; $Replacement['1'] = '/\\\'/'; $Replacement['2'] = '–'; $Replaced['0'] = '„$1”'; $Replaced['1'] = '’'; $Replaced['2'] = '—'; $NoPregText = preg_replace($Replacement, $Replaced, $TEXTAREAPreg); ?> When I put the text in database without quotes (eg: text) than is OK, but when I put text between quotes (eg: "text"), than it's don't go into database... So, can You help me what I'm do wrong? Thnxs Quote Link to comment https://forums.phpfreaks.com/topic/257817-no-preg-text-problem/ Share on other sites More sharing options...
requinix Posted February 26, 2012 Share Posted February 26, 2012 The code you posted... It has nothing to do with putting stuff into the database. Isn't that where the problem really is? Getting it into the database? Quote Link to comment https://forums.phpfreaks.com/topic/257817-no-preg-text-problem/#findComment-1321416 Share on other sites More sharing options...
web_master Posted February 26, 2012 Author Share Posted February 26, 2012 The code you posted... It has nothing to do with putting stuff into the database. Isn't that where the problem really is? Getting it into the database? You right requinix the code don't work I found it somewhere on internet... but it seems not work... Do You have som script to change quotes - "" to „” (ALT + 0132, ALT+0148) and ' to ’ and two spaces to one space and the ALT + 0150 to ALT 0151? Quote Link to comment https://forums.phpfreaks.com/topic/257817-no-preg-text-problem/#findComment-1321420 Share on other sites More sharing options...
requinix Posted February 27, 2012 Share Posted February 27, 2012 The problem is elsewhere. What's the code for inserting into the database? Quote Link to comment https://forums.phpfreaks.com/topic/257817-no-preg-text-problem/#findComment-1321637 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.